Files
assetx/components/product/PerformanceAnalysisTab.tsx

10 lines
217 B
TypeScript
Raw Normal View History

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