source: frontend/src/main.tsx@ 5c65932

main
Last change on this file since 5c65932 was 15ec67f, checked in by Filip Gavrilovski <filipgavrilovski28@…>, 6 months ago

init

  • Property mode set to 100644
File size: 231 bytes
Line 
1import { StrictMode } from "react";
2import { createRoot } from "react-dom/client";
3import App from "./App.tsx";
4import "./index.css";
5
6createRoot(document.getElementById("root")!).render(
7 <StrictMode>
8 <App />
9 </StrictMode>,
10);
Note: See TracBrowser for help on using the repository browser.