Skip to content

Commit

Permalink
Added redux store in separate file with necessary features
Browse files Browse the repository at this point in the history
  • Loading branch information
Canya1607 committed Oct 22, 2019
1 parent 4259443 commit 0df70b4
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions src/store/index.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import Phonebook from '../reducers';
import {createStore} from 'redux';
import {composeWithDevTools} from 'redux-devtools-extension';

let store = createStore(Phonebook, composeWithDevTools());

export default store;

0 comments on commit 0df70b4

Please sign in to comment.