aboutsummaryrefslogtreecommitdiff
path: root/src/content/store/index.ts
blob: 5c41744acee888982f94a651337bc540a17c1733 (plain) (blame)
1
2
3
4
5
6
7
8
import promise from 'redux-promise';
import reducers from '../reducers';
import { createStore, applyMiddleware } from 'redux';

export const newStore = () => createStore(
  reducers,
  applyMiddleware(promise),
);