import { useRouter } from 'next/router' const Index = () => { const router = useRouter() const {id} = router.query return(<div>{id}</div>) }