Files
cv/app/client/main.tsx
T

8 lines
239 B
TypeScript

import { createRoot } from "react-dom/client";
import { App } from "./App";
import "./styles.css";
const rootEl = document.getElementById("root");
if (!rootEl) throw new Error("missing #root element");
createRoot(rootEl).render(<App />);