ewdlop's picture
App.tsx
42ae0b9
Raw
History Blame Contribute Delete
230 Bytes
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./index.css";
import App from "./App";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);