From 6ed10e348dcb436e5f4bd06df973bb671a87678b Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Fri, 9 Jun 2023 02:24:05 +0200 Subject: [PATCH] Integrated the StateProvider into the main.jsx --- webui/src/main.jsx | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/webui/src/main.jsx b/webui/src/main.jsx index 2fa6bba..eea9e8a 100644 --- a/webui/src/main.jsx +++ b/webui/src/main.jsx @@ -3,14 +3,17 @@ 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( - - + + -
- -
+
+ + + +
-
, +
, ); \ No newline at end of file