1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 09:23:13 +01:00
onion/js/history.js

16 lines
462 B
JavaScript

import useRouterHistory from 'react-router/es6/useRouterHistory';
// History should be included by react-router
// eslint-disable-next-line import/no-extraneous-dependencies
import createBrowserHistory from 'history/lib/createBrowserHistory';
import AppConstants from './constants/application_constants';
const history = useRouterHistory(createBrowserHistory)({
basename: AppConstants.appBasePath
});
history.locationQueue = [];
export default history;