Skip to content

Commit 2918bc6

Browse files
committed
restore index.js
1 parent 0af9f06 commit 2918bc6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

index.js

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Comments
 (0)