webserver-framework-frontend/src/index.js

25 lines
794 B
JavaScript
Raw Normal View History

import React from 'react';
import ReactDOM from 'react-dom/client';
2022-11-17 13:33:59 +01:00
import './css/index.css';
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';
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>);
// 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);