1 Matching Annotations
- May 2017
-
www.hackingwithreact.com www.hackingwithreact.com
-
const appHistory = useRouterHistory(createHashHistory)({ queryKey: false })
In recent versions, useRouterHistory() throws an error. Assuming you imported createHashHistory as follows:
import { createHashHistory } from 'history';
Try this:
const appHistory = createHashHistory()
-