9 lines
216 B
TypeScript
9 lines
216 B
TypeScript
import { createRoot } from "react-dom/client";
|
|
|
|
import "./index.css";
|
|
import { App } from "./app/index";
|
|
|
|
const container = document.getElementById("root");
|
|
const root = createRoot(container!);
|
|
root.render(<App />);
|