2026-07-02 17:33:29 -04:00
|
|
|
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 />);
|