equal
deleted
inserted
replaced
1 import React from 'react'; |
1 import React from 'react'; |
2 import ReactDOM from 'react-dom'; |
2 import ReactDOM from 'react-dom'; |
|
3 import {Provider} from 'react-redux'; |
|
4 |
3 import App from './App'; |
5 import App from './App'; |
|
6 import './index.css'; |
4 import registerServiceWorker from './registerServiceWorker'; |
7 import registerServiceWorker from './registerServiceWorker'; |
5 import './index.css'; |
8 import configureStore from './store/configureStore'; |
6 import {Provider} from 'react-redux'; |
|
7 import configureStore from './store/configure-store'; |
|
8 |
9 |
9 const store = configureStore(); |
10 const store = configureStore(); |
10 |
11 |
11 ReactDOM.render( |
12 ReactDOM.render( |
12 <Provider store={store}> |
13 <Provider store={store}> |