source: frontend/src/main.jsx@ 09e02d7

Last change on this file since 09e02d7 was 09e02d7, checked in by Nikola Sarafimov <sarafimov.nikola12345@…>, 4 days ago

Final room reservation system implementation

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