kinda working wip

This commit is contained in:
dylan
2024-03-29 20:23:14 -07:00
parent d4d436f34a
commit a361871ec9
16 changed files with 267029 additions and 40 deletions

View File

@ -1,6 +1,8 @@
import { createRoot } from "react-dom/client";
import { app } from "./app.js";
// import { createRoot } from "react-dom/client";
// import { app } from "./app.js";
const domNode = document.getElementById("root")!;
const root = createRoot(domNode);
root.render(app);
// const domNode = document.getElementById("root")!;
// const root = createRoot(domNode);
// root.render(app);
export * from "./pico8-client/index";