upgrade packages and such

This commit is contained in:
2025-05-25 13:05:58 -07:00
parent a6d9abd0e1
commit e42dc4ada6
6 changed files with 586 additions and 820 deletions

View File

@@ -1,8 +1,7 @@
import { Root } from "./components/root";
import * as React from "react";
import * as ReactDOM from "react-dom";
import { createRoot } from "react-dom/client";
const body = document.getElementById("mount");
ReactDOM.render(<Root />, body);
const body = document.getElementById("mount") as HTMLElement;
const root = createRoot(body);
root.render(<Root />);