This commit is contained in:
Nicholas Orlowsky 2022-04-22 15:28:05 -05:00
parent 6d33f9bead
commit a3abf8a38e
No known key found for this signature in database
GPG key ID: 3845F78A73B14100
9 changed files with 31456 additions and 9298 deletions

View file

@ -4,12 +4,13 @@ import './index.css';
import App from './App';
import reportWebVitals from './reportWebVitals';
import { render } from 'react-snapshot';
import { BrowserRouter } from 'react-router-dom';
render(
<React.StrictMode>
<App />
</React.StrictMode>,
document.getElementById('root')
ReactDOM.render((
<BrowserRouter>
<App /> {/* The various pages will be displayed by the `Main` component. */}
</BrowserRouter>
), document.getElementById('root')
);
// If you want to start measuring performance in your app, pass a function