From 8696549ba1d3db7c6def0473bbe329193ca3b620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=BC=A0=E6=88=90?= Date: Tue, 3 Mar 2026 20:34:26 +0800 Subject: [PATCH] 1 --- src/pages/EditDashboard.tsx | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 src/pages/EditDashboard.tsx diff --git a/src/pages/EditDashboard.tsx b/src/pages/EditDashboard.tsx new file mode 100644 index 0000000..0410373 --- /dev/null +++ b/src/pages/EditDashboard.tsx @@ -0,0 +1,28 @@ +import { Link } from 'react-router-dom' +import { ArrowLeft, Settings } from 'lucide-react' + +/** 编辑面板占位页,/edit 路由 */ +export function EditDashboard() { + return ( +
+
+
+ + + 返回主面板 + + + + 编辑面板 + +
+
+
+

编辑功能开发中。

+
+
+ ) +}