We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0af9f06 commit 2918bc6Copy full SHA for 2918bc6
index.js
@@ -0,0 +1,8 @@
1
+import { UserInterface } from "./lib/Views/UserInterface";
2
+import Variables from "./lib/Styles/variables.scss";
3
+import { createRoot } from "react-dom/client";
4
+
5
+const container = document.getElementById("ui");
6
+const root = createRoot(container);
7
8
+root.render(<UserInterface themeOverrides={Variables} />);
0 commit comments