aboutsummaryrefslogtreecommitdiff
path: root/src/index.js
diff options
context:
space:
mode:
authorpacien2018-10-10 02:50:40 +0200
committerpacien2018-10-10 02:50:40 +0200
commita3807bf0fbc406dc336c8a07e4d4426a510c7249 (patch)
tree1f2990b621025bc5b35d44880bf1f685466cb7b8 /src/index.js
parenta0beb9d8a9e67cbdd95492b1e118c794ce442819 (diff)
downloadjacoco-viewer-a3807bf0fbc406dc336c8a07e4d4426a510c7249.tar.gz
Bootstrap React app
Diffstat (limited to 'src/index.js')
-rw-r--r--src/index.js12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/index.js b/src/index.js
new file mode 100644
index 0000000..0c5e75d
--- /dev/null
+++ b/src/index.js
@@ -0,0 +1,12 @@
1import React from 'react';
2import ReactDOM from 'react-dom';
3import './index.css';
4import App from './App';
5import * as serviceWorker from './serviceWorker';
6
7ReactDOM.render(<App />, document.getElementById('root'));
8
9// If you want your app to work offline and load faster, you can change
10// unregister() to register() below. Note this comes with some pitfalls.
11// Learn more about service workers: http://bit.ly/CRA-PWA
12serviceWorker.unregister();