aboutsummaryrefslogtreecommitdiffstats
path: root/src/index.js
diff options
context:
space:
mode:
authorbndw <benjamindwoodward@gmail.com>2020-05-30 10:15:45 -0700
committerbndw <benjamindwoodward@gmail.com>2020-05-30 10:15:45 -0700
commite177a74c9ea505284c8debf086f785a43d88f90b (patch)
treeb740f156a74c37bdfeae29b39617ca6a25307e8f /src/index.js
Initialize project using Create React App
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
new file mode 100644
index 0000000..f5185c1
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,17 @@
1import React from 'react';
2import ReactDOM from 'react-dom';
3import './index.css';
4import App from './App';
5import * as serviceWorker from './serviceWorker';
6
7ReactDOM.render(
8 <React.StrictMode>
9 <App />
10 </React.StrictMode>,
11 document.getElementById('root')
12);
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();