blob: 46c4350b099b384e7b1b79a2d5fc8c15b7984d2c (
plain) (
blame)
1
2
3
4
5
6
|
import * as _ from 'lodash';
import { applyMiddleware, createStore, Store as ReduxStore } from 'redux';
import { reducer, State } from './reducer';
export const store: ReduxStore<State> = createStore(reducer);
|