From 36b66d9b2fa48c7d294734b41f76058a88b5e2fc Mon Sep 17 00:00:00 2001 From: ValdiANS Date: Thu, 2 Oct 2025 12:00:18 +0700 Subject: [PATCH] feat(FE-40): create Dashboard page --- src/app/dashboard/page.tsx | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 src/app/dashboard/page.tsx diff --git a/src/app/dashboard/page.tsx b/src/app/dashboard/page.tsx new file mode 100644 index 00000000..4f2c344e --- /dev/null +++ b/src/app/dashboard/page.tsx @@ -0,0 +1,9 @@ +const Dashboard = () => { + return ( +
+

Dashboard

+
+ ); +}; + +export default Dashboard;