diff options
| author | Michael Foiani <sotech117@michaels-mbp-3.lan> | 2021-04-16 15:13:02 -0400 |
|---|---|---|
| committer | Michael Foiani <sotech117@michaels-mbp-3.lan> | 2021-04-16 15:13:02 -0400 |
| commit | f00ac29dff86169e5dee9d816961cc13979f9a50 (patch) | |
| tree | 024ac2af25a2f3119d0e1d13a8e31f099795a448 /maps-frontend/src/index.js | |
| parent | 505870f7a9f6f0ad8130cee3995d68b10010c24d (diff) | |
Working on adapting maps frontend. Finished the time selector to change the time interval.
Diffstat (limited to 'maps-frontend/src/index.js')
| -rw-r--r-- | maps-frontend/src/index.js | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/maps-frontend/src/index.js b/maps-frontend/src/index.js new file mode 100644 index 0000000..ef2edf8 --- /dev/null +++ b/maps-frontend/src/index.js @@ -0,0 +1,17 @@ +import React from 'react'; +import ReactDOM from 'react-dom'; +import './index.css'; +import App from './App'; +import reportWebVitals from './reportWebVitals'; + +ReactDOM.render( + <React.StrictMode> + <App /> + </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(); |
