diff --git a/client/src/App.jsx b/client/src/App.jsx index 03cc649..088299e 100644 --- a/client/src/App.jsx +++ b/client/src/App.jsx @@ -5,6 +5,7 @@ import {BrowserRouter} from "react-router-dom"; import Header from "@/common/components/Header"; import Content from "@/common/components/Content"; import {useState} from "react"; +import {StatusProvider} from "@/common/contexts/Status"; const App = () => { const [sidebarOpen, setSidebarOpen] = useState(window.innerWidth >= 1024); @@ -12,9 +13,11 @@ const App = () => { return ( <> - -
- + + +
+ + )