Я получаю сообщение об ошибке Cannot read property 'history' of undefined
. Я правильно импортировал хук useHistory()
из react-router-dom
.
export const App = () => {
/* Handle deep link navigation based on incoming myApp://entity/:entity_id call */
const history = useHistory()
const setLocationFromDeepLink = (path: string) => {
history.push(`/${path}`)
}
.......