Issues using next/router?
Answered
New Guinea Freshwater Crocodile posted this in #help-forum
New Guinea Freshwater CrocodileOP
import { useRouter } from 'next/router'
export default function Page() {
const router = useRouter()
return <p>Post: {router.query.id}</p>
}/manage/[id] <- url
File setup
/src/pages/manage/[id].s
TypeError: Cannot read properties of null (reading 'useContext')Answered by New Guinea Freshwater Crocodile
2 Replies
New Guinea Freshwater CrocodileOP
https://nextjs.org/docs/pages/building-your-application/routing/dynamic-routes
Looks here, no help though
Looks here, no help though
New Guinea Freshwater CrocodileOP
Answer