Integrated the StateProvider into the main.jsx

This commit is contained in:
Mathias Wagner 2023-06-09 02:24:05 +02:00
parent 1bfb459d56
commit 6ed10e348d

View File

@ -3,13 +3,16 @@ import ReactDOM from "react-dom/client";
import App from "./App.jsx";
import "@/common/styles/main.sass";
import BlurredBackground from "@/common/components/BlurredBackground";
import {StateProvider} from "@/common/contexts/StateContext";
ReactDOM.createRoot(document.getElementById("root")).render(
<React.StrictMode>
<BlurredBackground />
<BlurredBackground/>
<div className="app">
<App />
<StateProvider>
<App/>
</StateProvider>
</div>
</React.StrictMode>,