fix: themes and layout
ci-front / build (push) Successful in 2m3s

This commit is contained in:
2026-04-04 00:01:01 +03:00
parent 88fb7a1888
commit 8cf0837f97
8 changed files with 665 additions and 149 deletions
+4 -1
View File
@@ -1,9 +1,12 @@
import { createRoot } from "react-dom/client";
import { BrowserRouter } from "react-router";
import { ThemeInitialProvider } from "./modules/theme-changer";
import App from "./app/App";
createRoot(document.getElementById("root")!).render(
<BrowserRouter>
<App />
<ThemeInitialProvider>
<App />
</ThemeInitialProvider>
</BrowserRouter>,
);