Skip to content
index.tsx 226 B
Newer Older
Grant's avatar
Grant committed
import React from "react";
import ReactDOM from "react-dom";
import { createRoot } from "react-dom/client";
import App from "./components/App";

const root = createRoot(document.getElementById("root")!);
root.render(<App />);