10 lines
218 B
TypeScript
10 lines
218 B
TypeScript
/**
|
|
* This file is the entry point for the React app.
|
|
*/
|
|
|
|
import { createRoot } from "react-dom/client";
|
|
import { App } from "./App";
|
|
|
|
const elem = document.getElementById("root")!;
|
|
createRoot(elem).render(<App />);
|