sheer / src /main.tsx
dan5py
feat: migrate to Vite5
4ac90cc unverified
raw
history blame
243 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import App from "./App.tsx";
import "@/styles/globals.css";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);