2023-04-22 19:02:25 -04:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import 'bootstrap/js/dist/collapse';
|
|
|
|
import './index.scss';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2023-07-15 15:43:55 -04:00
|
|
|
import {MobileTooltipProvider} from '@common/ui/MobileTooltip';
|
2023-04-22 19:02:25 -04:00
|
|
|
|
|
|
|
ReactDOM.render(
|
2023-04-29 06:18:48 -04:00
|
|
|
<React.StrictMode>
|
|
|
|
<MobileTooltipProvider>
|
|
|
|
<App/>
|
|
|
|
</MobileTooltipProvider>
|
|
|
|
</React.StrictMode>,
|
|
|
|
document.getElementById('root'),
|
2023-04-22 19:02:25 -04: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
|
|
|
|
reportWebVitals();
|