8 lines
267 B
TypeScript
8 lines
267 B
TypeScript
|
import { applyMiddleware, compose, createStore } from 'redux';
|
||
|
import createSagaMiddleware from 'redux-saga';
|
||
|
|
||
|
import reducers from '.';
|
||
|
|
||
|
const enhancers = compose(applyMiddleware(createSagaMiddleware()));
|
||
|
export const mockedStore = createStore(reducers, enhancers);
|