picobook/src/client/index.ts

8 lines
223 B
TypeScript
Raw Normal View History

2024-03-31 12:13:27 -07:00
import { createRoot } from "react-dom/client";
import { app } from "./app.js";
2023-10-29 19:28:07 +00:00
2024-03-31 12:13:27 -07:00
const domNode = document.getElementById("root")!;
const root = createRoot(domNode);
root.render(app);
2024-03-29 20:23:14 -07:00
2024-03-31 12:13:27 -07:00
// export * from "./pico8-client/index";