import createBrowserHistory from 'history/lib/createBrowserHistory';

// For Amazon S3. (sigh.)
if (window.location.hash) {
  const loc = window.location.hash.substring(1);
  window.location.hash = '';
  window.history.replaceState({}, 'Hash jump', loc);
}

const history = createBrowserHistory();
export default history;
