sheer / src /main.tsx
barreloflube's picture
v1
5fc68b0
raw
history blame
265 Bytes
import './polyfills';
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>
);