Files
LabWise/main.tsx

11 lines
239 B
TypeScript
Raw Permalink Normal View History

2026-03-18 21:51:02 -05:00
import { StrictMode } from "react";
import { createRoot } from "react-dom/client";
import "./styles/globals.css";
import App from "./App";
createRoot(document.getElementById("root")!).render(
<StrictMode>
<App />
</StrictMode>
);