|
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
|
| Rev | Line | |
|---|
| [09e02d7] | 1 | import React from "react";
|
|---|
| 2 | import { createRoot } from "react-dom/client";
|
|---|
| 3 | import App from "./App.jsx";
|
|---|
| 4 | import "./index.css";
|
|---|
| 5 | import "./App.css";
|
|---|
| 6 |
|
|---|
| 7 | createRoot(document.getElementById("root")).render(
|
|---|
| 8 | <React.StrictMode>
|
|---|
| 9 | <App />
|
|---|
| 10 | </React.StrictMode>
|
|---|
| 11 | ); |
|---|
Note:
See
TracBrowser
for help on using the repository browser.