2022-11-15 19:33:00 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/client';
|
2022-11-17 13:33:59 +01:00
|
|
|
import './css/index.css';
|
2022-11-15 19:33:00 +01:00
|
|
|
import App from './App';
|
2022-11-23 23:02:01 +01:00
|
|
|
// import reportWebVitals from './reportWebVitals';
|
2022-11-17 13:33:59 +01:00
|
|
|
import { UserContext } from './structures/UserContext';
|
2022-11-27 22:21:25 +01:00
|
|
|
import { BrowserRouter } from 'react-router-dom';
|
2022-11-15 19:33:00 +01:00
|
|
|
|
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root'));
|
2022-11-17 13:33:59 +01:00
|
|
|
root.render(<React.StrictMode>
|
|
|
|
<UserContext>
|
2022-11-27 22:21:25 +01:00
|
|
|
<BrowserRouter>
|
|
|
|
<App />
|
|
|
|
</BrowserRouter>
|
2022-11-17 13:33:59 +01:00
|
|
|
</UserContext>
|
|
|
|
</React.StrictMode>);
|
2022-11-23 23:02:01 +01:00
|
|
|
// root.render(<UserContext>
|
|
|
|
// <App />
|
|
|
|
// </UserContext>);
|
2022-11-15 19:33:00 +01:00
|
|
|
|
|
|
|
// If you want to start measuring performance in your app, pass a function
|
|
|
|
// to log results (for example: reportWebVitals(console.log))
|
|
|
|
// or send to an analytics endpoint. Learn more: https://bit.ly/CRA-vitals
|
2022-11-20 17:40:25 +01:00
|
|
|
// reportWebVitals(console.log);
|