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