9 lines
230 B
TypeScript
9 lines
230 B
TypeScript
import "@/styles.css";
|
|
import { Root } from "@/components/root";
|
|
|
|
import { createRoot } from "react-dom/client";
|
|
|
|
const body = document.getElementById("mount") as HTMLElement;
|
|
const root = createRoot(body);
|
|
root.render(<Root />);
|