|
Last change
on this file since a8381b1 was 3ebe47c, checked in by Andrej <asumanovski@…>, 5 months ago |
|
Made authentication on frontend and backend
|
-
Property mode
set to
100644
|
|
File size:
328 bytes
|
| Line | |
|---|
| 1 | import { StrictMode } from "react";
|
|---|
| 2 | import { createRoot } from "react-dom/client";
|
|---|
| 3 | import { BrowserRouter } from "react-router-dom";
|
|---|
| 4 |
|
|---|
| 5 | import "./index.css";
|
|---|
| 6 | import App from "./App.jsx";
|
|---|
| 7 |
|
|---|
| 8 | createRoot(document.getElementById("root")).render(
|
|---|
| 9 | <StrictMode>
|
|---|
| 10 | <BrowserRouter>
|
|---|
| 11 | <App />
|
|---|
| 12 | </BrowserRouter>
|
|---|
| 13 | </StrictMode>,
|
|---|
| 14 | );
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.