1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-22 17:33:14 +01:00

Comply to react-router's history changes

This commit is contained in:
Tim Daubenschütz 2016-01-25 14:50:55 +01:00
parent 20f2836aed
commit d0586c937d

View File

@ -1,13 +1,12 @@
'use strict';
import useBasename from 'history/lib/useBasename';
import { useRouterHistory } from 'react-router';
import createBrowserHistory from 'history/lib/createBrowserHistory';
import AppConstants from './constants/application_constants';
// Remove the trailing slash if present
let baseUrl = AppConstants.baseUrl.replace(/\/$/, '');
let basename = AppConstants.baseUrl.replace(/\/$/, '');
export default useBasename(createBrowserHistory)({
basename: baseUrl
});
export default useRouterHistory(createBrowserHistory)({ basename });