From 04c0b750c253879a886d8bc18f014e913584657c Mon Sep 17 00:00:00 2001 From: Your Name Date: Wed, 1 Apr 2026 10:40:07 +0800 Subject: [PATCH] feat: create StatisticsPlaceholder component Add placeholder component for future statistics area with 60vh height. Co-Authored-By: Claude Sonnet 4.6 --- .../components/StatisticsPlaceholder.tsx | 29 +++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 src/pages/components/StatisticsPlaceholder.tsx 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;