2025-05-15 20:07:33 +01:00
|
|
|
import '@mantine/core/styles.css';
|
2025-05-09 20:01:09 +01:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom/client';
|
2025-05-15 20:07:33 +01:00
|
|
|
import { ColorSchemeScript, MantineProvider, mantineHtmlProps } from '@mantine/core';
|
|
|
|
import { BrowserRouter } from 'react-router-dom';
|
2025-05-09 20:01:09 +01:00
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
|
|
|
|
2025-05-27 19:22:26 +01:00
|
|
|
|
2025-05-15 20:07:33 +01:00
|
|
|
const root = ReactDOM.createRoot(document.getElementById('root')); // Finds the root DOM element
|
2025-05-09 20:01:09 +01:00
|
|
|
root.render(
|
|
|
|
<React.StrictMode>
|
2025-05-15 20:07:33 +01:00
|
|
|
<ColorSchemeScript />
|
|
|
|
<MantineProvider withGlobalStyles withNormalizeCSS>
|
|
|
|
<BrowserRouter>
|
|
|
|
<App />
|
|
|
|
</BrowserRouter>
|
|
|
|
</MantineProvider>
|
2025-05-09 20:01:09 +01:00
|
|
|
</React.StrictMode>
|
|
|
|
);
|
|
|
|
|
|
|
|
reportWebVitals();
|