Store.js 251 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 import { createStore, combineReducers, applyMiddleware } from 'redux'; import ReduxThunk from 'redux-thunk' import search from './search'; const store = combineReducers({ search }); export default createStore(store, applyMiddleware(ReduxThunk) );