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