Files
assetx/components/product/PerformanceAnalysisTab.tsx

10 lines
217 B
TypeScript
Raw Permalink Normal View History

2026-02-03 19:56:21 +08:00
import PerformanceAnalysis from "./PerformanceAnalysis";
export default function PerformanceAnalysisTab() {
return (
<div className="flex flex-col gap-8 w-full">
<PerformanceAnalysis />
</div>
);
}