source: frontend/src/main.tsx@ fd81a18

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

init

  • Property mode set to 100644
File size: 231 bytes
RevLine 
[15ec67f]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.