diff --git a/src/pages/components/StatisticsPlaceholder.tsx b/src/pages/components/StatisticsPlaceholder.tsx new file mode 100644 index 0000000..218cfcd --- /dev/null +++ b/src/pages/components/StatisticsPlaceholder.tsx @@ -0,0 +1,29 @@ +import React from 'react'; + +const StatisticsPlaceholder: React.FC = () => { + return ( +
+ {/* 未来扩展:统计数据卡片、图表、报表等 */} +
+ {/* 当前阶段:完全空白,便于未来扩展 */} +
+
+ ); +}; + +export default StatisticsPlaceholder;