Skip to content

Commit

Permalink
update action type in App.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Lukeghenco committed Feb 10, 2017
1 parent dc33843 commit 288bd5a
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/index.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import React from 'react';
import ReactDOM from 'react-dom';
import { createStore } from 'redux';
import { Provider } from 'react-redux';
import shoppingListItemReducer from './reducers/shoppingListItemReducer';
import App from './App';
import './index.css';
Expand All @@ -11,6 +12,8 @@ const store = createStore(
);

ReactDOM.render(
<App store={store}/>,
<Provider store={store}>
<App store={store}/>
</Provider>,
document.getElementById('root')
);

0 comments on commit 288bd5a

Please sign in to comment.