Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save uhtred/d1334b1b7d177d4e122a1287b53e58f3 to your computer and use it in GitHub Desktop.
Save uhtred/d1334b1b7d177d4e122a1287b53e58f3 to your computer and use it in GitHub Desktop.
// util/history.js
import { Router, useRouterHistory } from 'react-router'
import { createHashHistory } from 'history'
const appHistory = useRouterHistory(createHashHistory)({ queryKey: false });
export default appHistory;
// use.js
import History from 'util/history';
History.push('login')
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment