10 lines
223 B
TypeScript
10 lines
223 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
|
|
import App from "./App";
|
|
import "./globals.css";
|
|
|
|
const container = document.getElementById("root") as HTMLElement;
|
|
const root = createRoot(container);
|
|
|
|
root.render(<App />);
|