diff --git a/src/index.tsx b/src/index.tsx new file mode 100644 index 0000000..b636683 --- /dev/null +++ b/src/index.tsx @@ -0,0 +1,7 @@ +import * as React from "react"; +import { Boot } from "./App/Boot"; +import { createRoot } from "react-dom/client"; + +const container = document.getElementById("root")!; +const root = createRoot(container); +root.render();