aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorbndw <benjamindwoodward@gmail.com>2020-05-31 09:38:39 -0700
committerbndw <benjamindwoodward@gmail.com>2020-05-31 09:38:39 -0700
commitcc214ac6a490ce9840356434a8e0c4334aeb9282 (patch)
tree79e92d5de1de1c6dcbb5fcc41a4d028e6cfcf78c /src/index.js
parent8739544d16aaccf9e03c2ef1d07d4b144b0b48e7 (diff)
:fire: Remove create-react-app boilerplate
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/index.js b/src/index.js
index be3b97a..baca53a 100644
--- a/src/index.js
+++ b/src/index.js
@@ -2,7 +2,6 @@ import React from 'react';
2import ReactDOM from 'react-dom'; 2import ReactDOM from 'react-dom';
3import './light.min.css'; 3import './light.min.css';
4import App from './App'; 4import App from './App';
5import * as serviceWorker from './serviceWorker';
6 5
7ReactDOM.render( 6ReactDOM.render(
8 <React.StrictMode> 7 <React.StrictMode>
@@ -10,8 +9,3 @@ ReactDOM.render(
10 </React.StrictMode>, 9 </React.StrictMode>,
11 document.getElementById('root') 10 document.getElementById('root')
12); 11);
13
14// If you want your app to work offline and load faster, you can change
15// unregister() to register() below. Note this comes with some pitfalls.
16// Learn more about service workers: https://bit.ly/CRA-PWA
17serviceWorker.unregister();