From 5a92cd77d14ccb02c6ba3a7dcd5441bd5b7096a4 Mon Sep 17 00:00:00 2001 From: maxime Date: Sun, 24 Mar 2024 13:32:05 +0100 Subject: [PATCH] WIP: settings --- src/App.tsx | 6 ++++++ src/pages/Settings.tsx | 5 +++++ 2 files changed, 11 insertions(+) create mode 100644 src/pages/Settings.tsx diff --git a/src/App.tsx b/src/App.tsx index 29ab83b..a353561 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -13,6 +13,7 @@ const CreateTeamPage = lazy(() => import("./pages/CreateTeamPage.tsx")) const TeamPanelPage = lazy(() => import("./pages/TeamPanel.tsx")) const NewTacticPage = lazy(() => import("./pages/NewTacticPage.tsx")) const Editor = lazy(() => import("./pages/Editor.tsx")) +const Settings = lazy(() => import("./pages/Settings.tsx")) export default function App() { function suspense(node: ReactNode) { @@ -42,6 +43,11 @@ export default function App() { element={suspense()} /> + )} + /> + )} diff --git a/src/pages/Settings.tsx b/src/pages/Settings.tsx new file mode 100644 index 0000000..c6dcc7f --- /dev/null +++ b/src/pages/Settings.tsx @@ -0,0 +1,5 @@ + + +export default function Settings() { + return

Hey !

+} \ No newline at end of file