next.js/test/integration/custom-routes/pages/auto-export/another.js
another.js12 lines248 B
import { useRouter } from 'next/router'

export default function Page() {
  const router = useRouter()
  return (
    <>
      <p id="auto-export-another">auto-export another</p>
      <p id="query">{JSON.stringify(router.query)}</p>
    </>
  )
}
Quest for Codev2.0.0
/
SIGN IN