| author | ymh <ymh.work@gmail.com> |
| Tue, 23 May 2017 13:15:34 +0200 | |
| changeset 3 | 3b5d37d84cfe |
| parent 1 | 431977d7c9a6 |
| child 12 | 48ddaa42b810 |
| permissions | -rw-r--r-- |
| 1 | 1 |
import React from 'react'; |
2 |
import ReactDOM from 'react-dom'; |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
1
diff
changeset
|
3 |
import {Provider} from 'react-redux'; |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
1
diff
changeset
|
4 |
|
| 1 | 5 |
import App from './App'; |
6 |
import './index.css'; |
|
|
3
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
1
diff
changeset
|
7 |
import registerServiceWorker from './registerServiceWorker'; |
|
3b5d37d84cfe
Some code rename and reorg + basic tests
ymh <ymh.work@gmail.com>
parents:
1
diff
changeset
|
8 |
import configureStore from './store/configureStore'; |
| 1 | 9 |
|
10 |
const store = configureStore(); |
|
11 |
||
12 |
ReactDOM.render( |
|
13 |
<Provider store={store}> |
|
14 |
<App /> |
|
15 |
</Provider>, |
|
16 |
document.getElementById('root') |
|
17 |
); |
|
18 |
registerServiceWorker(); |