mirror of
https://github.com/plankanban/planka.git
synced 2025-07-18 20:59:44 +02:00
7 lines
252 B
JavaScript
7 lines
252 B
JavaScript
|
import { createBrowserHistory } from 'history';
|
||
|
import { createReduxHistoryContext } from 'redux-first-history';
|
||
|
|
||
|
export const { createReduxHistory, routerMiddleware, routerReducer } = createReduxHistoryContext({
|
||
|
history: createBrowserHistory(),
|
||
|
});
|