1
0
Fork 0

Merge pull request #80 from wuweiweiwu/cra-v2

Use CRA v2
This commit is contained in:
Travis Fischer 2019-03-02 11:37:17 -05:00 committed by Joost De Cock
parent 949c7c8148
commit 3472a121ab
22 changed files with 2134 additions and 1012 deletions

View file

@ -1,7 +1,12 @@
import React from 'react'
import ReactDOM from 'react-dom'
import React from 'react';
import ReactDOM from 'react-dom';
import './index.css';
import App from './App';
import * as serviceWorker from './serviceWorker';
import './index.css'
import App from './App'
ReactDOM.render(<App />, document.getElementById('root'));
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();