qcal/frcal/src/index.tsx

22 lines
690 B
TypeScript
Raw Normal View History

import React from 'react';
import ReactDOM from 'react-dom';
2022-02-12 21:16:00 -05:00
import 'bootstrap/js/dist/collapse';
2023-07-15 23:09:42 -04:00
import './index.scss';
import App from './App';
2023-07-15 17:57:34 -04:00
import reportWebVitals from '@common/ui/reportWebVitals';
import {MobileTooltipProvider} from '@common/ui/MobileTooltip';
ReactDOM.render(
<React.StrictMode>
<MobileTooltipProvider>
<App/>
</MobileTooltipProvider>
</React.StrictMode>,
document.getElementById('root'),
);
// 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();