2021-06-27 23:37:40 +00:00
|
|
|
import React from 'react';
|
|
|
|
import ReactDOM from 'react-dom';
|
|
|
|
import './index.css';
|
|
|
|
import App from './App';
|
|
|
|
import reportWebVitals from './reportWebVitals';
|
2021-09-12 15:57:38 +00:00
|
|
|
import { render } from 'react-snapshot';
|
2022-04-22 20:28:05 +00:00
|
|
|
import { BrowserRouter } from 'react-router-dom';
|
2021-06-27 23:37:40 +00:00
|
|
|
|
2022-04-22 20:28:05 +00:00
|
|
|
ReactDOM.render((
|
|
|
|
<BrowserRouter>
|
|
|
|
<App /> {/* The various pages will be displayed by the `Main` component. */}
|
|
|
|
</BrowserRouter>
|
|
|
|
), document.getElementById('root')
|
2021-06-27 23:37:40 +00: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();
|