mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-23 21:00:01 +08:00
21 lines
663 B
TypeScript
21 lines
663 B
TypeScript
|
|
/// <reference types="redux" />
|
|
/// <reference types="react-router" />
|
|
|
|
|
|
|
|
import { createStore, combineReducers, applyMiddleware } from 'redux';
|
|
import { browserHistory } from 'react-router';
|
|
import { syncHistory, routeReducer } from 'react-router-redux';
|
|
|
|
const reducer = combineReducers({ routing: routeReducer });
|
|
|
|
// Sync dispatched route actions to the history
|
|
const reduxRouterMiddleware = syncHistory(browserHistory);
|
|
const createStoreWithMiddleware = applyMiddleware(reduxRouterMiddleware)(createStore);
|
|
|
|
const store = createStoreWithMiddleware(reducer);
|
|
|
|
// Required for replaying actions from devtools to
|
|
reduxRouterMiddleware.listenForReplays(store);
|