From 4459e0b2603a394d6a2ef83fc047260a49cc434a Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Thu, 8 Jun 2023 22:34:08 +0200 Subject: [PATCH] Added the BlurredBackground to the main.jsx --- webui/src/main.jsx | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/webui/src/main.jsx b/webui/src/main.jsx index 6843972..2fa6bba 100644 --- a/webui/src/main.jsx +++ b/webui/src/main.jsx @@ -1,9 +1,16 @@ import React from "react"; import ReactDOM from "react-dom/client"; import App from "./App.jsx"; +import "@/common/styles/main.sass"; +import BlurredBackground from "@/common/components/BlurredBackground"; ReactDOM.createRoot(document.getElementById("root")).render( - + + +
+ +
+
, ); \ No newline at end of file