diff options
Diffstat (limited to 'graphgraph-fe/src/index.js')
-rw-r--r-- | graphgraph-fe/src/index.js | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/graphgraph-fe/src/index.js b/graphgraph-fe/src/index.js new file mode 100644 index 0000000..bdd3da2 --- /dev/null +++ b/graphgraph-fe/src/index.js @@ -0,0 +1,13 @@ +import React from 'react' +import ReactDOM from 'react-dom' +import './index.css' +import App from './App' +import * as serviceWorker from './serviceWorker' +import 'bootstrap-css-only/css/bootstrap.css' + +ReactDOM.render(<App />, document.getElementById('root')) + +// If you want your app to work offline and load faster, you can change +// unregister() to register() below. Note this comes with some pitfalls. +// Learn more about service workers: http://bit.ly/CRA-PWA +serviceWorker.unregister() |