From 130f53ac18de5e9ec22c3da173afd1a042473b9d Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 30 Jul 2023 19:07:02 +0200 Subject: [PATCH] Updated the App.jsx --- src/App.jsx | 17 +++++++---------- 1 file changed, 7 insertions(+), 10 deletions(-) diff --git a/src/App.jsx b/src/App.jsx index 0e14dc3..be3a6b6 100644 --- a/src/App.jsx +++ b/src/App.jsx @@ -1,15 +1,12 @@ -import { LinearProgress, Stack, useTheme} from "@mui/material"; -import LightLogo from "@/common/assets/images/logo/light.webp"; -import DarkLogo from "@/common/assets/images/logo/dark.webp"; +import {UserProvider} from "@contexts/User"; +import {InfoProvider} from "@contexts/Info"; export default () => { - const theme = useTheme(); - const logo = theme.palette.mode === "dark" ? DarkLogo : LightLogo; - return ( - - Logo - - + + +

Logged in

+
+
) } \ No newline at end of file