aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/redux/store.ts
blob: 4d80c03832121fcebe56e1b89cb887b6fc72a4d4 (plain) (blame)
1
2
3
4
5
6
7
8
import * as _ from 'lodash';
import { applyMiddleware, createStore, Store as ReduxStore } from 'redux';

import { reducer, State } from './reducer';

const ONE_SECOND = 1000;

export const store: ReduxStore<State> = createStore(reducer);