Files
assetx/components/PerformanceAnalysisTab.tsx

10 lines
217 B
TypeScript
Raw Permalink Normal View History

2026-01-26 17:44:27 +08:00
import PerformanceAnalysis from "./PerformanceAnalysis";
export default function PerformanceAnalysisTab() {
return (
<div className="flex flex-col gap-8 w-full">
<PerformanceAnalysis />
</div>
);
}