Wauplin's picture
Wauplin HF Staff
frontend boilerplate
251d0f9 verified
raw
history blame
235 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App.tsx";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>,
);