From f50e2806d1db05b0736e65ab93e99688a1380949 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sat, 20 Jul 2024 13:15:10 +0200 Subject: [PATCH] Create App.jsx --- dashboard/src/App.jsx | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 dashboard/src/App.jsx diff --git a/dashboard/src/App.jsx b/dashboard/src/App.jsx new file mode 100644 index 0000000..0b816e4 --- /dev/null +++ b/dashboard/src/App.jsx @@ -0,0 +1,19 @@ +import {UserProvider} from "@contexts/User"; +import {InfoProvider} from "@contexts/Info"; +import {createBrowserRouter, RouterProvider} from "react-router-dom"; +import Dashboard from "@/states/Dashboard"; +import {routes} from "@/common/routes"; + +const router = createBrowserRouter([ + {path: "/", element: , children: routes}, +]) + +export default () => { + return ( + + + + + + ) +} \ No newline at end of file