1
0
mirror of https://github.com/ascribe/onion.git synced 2024-12-23 01:39:36 +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'; 'use strict';
import useBasename from 'history/lib/useBasename'; import { useRouterHistory } from 'react-router';
import createBrowserHistory from 'history/lib/createBrowserHistory'; import createBrowserHistory from 'history/lib/createBrowserHistory';
import AppConstants from './constants/application_constants'; import AppConstants from './constants/application_constants';
// Remove the trailing slash if present // Remove the trailing slash if present
let baseUrl = AppConstants.baseUrl.replace(/\/$/, ''); let basename = AppConstants.baseUrl.replace(/\/$/, '');
export default useBasename(createBrowserHistory)({ export default useRouterHistory(createBrowserHistory)({ basename });
basename: baseUrl
});