Initial commit
This commit is contained in:
6
src/client/index.ts
Normal file
6
src/client/index.ts
Normal file
@ -0,0 +1,6 @@
|
||||
import { createRoot } from "react-dom/client";
|
||||
import { app } from "./app.js";
|
||||
|
||||
const domNode = document.getElementById("root")!;
|
||||
const root = createRoot(domNode);
|
||||
root.render(app);
|
Reference in New Issue
Block a user