diff -r b52921a63e77 -r 3b5d37d84cfe client/src/store/configure-store.js --- a/client/src/store/configure-store.js Mon May 22 17:59:19 2017 +0200 +++ /dev/null Thu Jan 01 00:00:00 1970 +0000 @@ -1,11 +0,0 @@ -import rootReducer from '../reducers'; -import {createStore} from 'redux'; -import Immutable from 'immutable'; - -const storeInitialState = Immutable.Map({ - notes: Immutable.List([]) -}); - -export default (initialState = storeInitialState) => { - return createStore(rootReducer, initialState); -};