Files
buzz/admin-web/src/main.tsx

13 lines
306 B
TypeScript

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