From 1cd85f1a517704d9d8f25dc1c09ec3f4d7bd8c08 Mon Sep 17 00:00:00 2001 From: miguel-merlin Date: Tue, 9 Apr 2024 07:41:12 -0400 Subject: [PATCH] feat: Deleted dashboard page --- src/app/App.tsx | 2 -- src/pages/DashboardPage.tsx | 8 -------- 2 files changed, 10 deletions(-) delete mode 100644 src/pages/DashboardPage.tsx diff --git a/src/app/App.tsx b/src/app/App.tsx index e3c5afa..f645b12 100644 --- a/src/app/App.tsx +++ b/src/app/App.tsx @@ -1,6 +1,5 @@ import { Routes, Route } from 'react-router-dom' import HomePage from '../pages/HomePage' -import DashboardPage from '../pages/DashboardPage' import BlogPage from '../pages/BlogPage' function App (): JSX.Element { @@ -8,7 +7,6 @@ function App (): JSX.Element {
} /> - } /> } />
diff --git a/src/pages/DashboardPage.tsx b/src/pages/DashboardPage.tsx deleted file mode 100644 index bf4b88e..0000000 --- a/src/pages/DashboardPage.tsx +++ /dev/null @@ -1,8 +0,0 @@ -function DashboardPage (): JSX.Element { - return ( -
-
- ) -} - -export default DashboardPage