From 827cd3de683308d31186a43a7286743d351bc59d Mon Sep 17 00:00:00 2001 From: HenriqueSSan Date: Fri, 30 Dec 2022 12:49:20 -0300 Subject: [PATCH] feat(routes): created routes for initial page --- src/App.tsx | 17 ++----- src/pages/Introduction/index.module.scss | 32 ------------- src/pages/Introduction/index.tsx | 9 +--- src/settings/routes/index.module.scss | 40 ++++++++++++++++ src/settings/routes/index.tsx | 59 ++++++++++++++++++++++++ src/settings/styles/global/_config.scss | 14 ++++++ src/template/Sidebar/index.module.scss | 0 src/template/Sidebar/index.tsx | 19 ++++++++ 8 files changed, 138 insertions(+), 52 deletions(-) create mode 100644 src/settings/routes/index.module.scss create mode 100644 src/settings/routes/index.tsx create mode 100644 src/template/Sidebar/index.module.scss create mode 100644 src/template/Sidebar/index.tsx diff --git a/src/App.tsx b/src/App.tsx index 4a416eb..89df068 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,19 +1,12 @@ -import { Footer } from './template/Footer' -import { Header } from './template/Header' -import { Introduction } from './pages/Introduction' +import { BrowserRouter } from 'react-router-dom' +import { Router } from './settings/routes' import './settings/styles/index.scss' export function App() { return ( - <> -
- -
- -
- -