next.js/test/integration/invalid-multi-match/pages/hello.js
hello.js16 lines253 B
import { useRouter } from 'next/router'

console.log('hello from hello.js')

const Page = () => {
  const { query } = useRouter()
  return (
    <>
      <h3>hello world</h3>
      <span>{JSON.stringify(query)}</span>
    </>
  )
}

export default Page
Quest for Codev2.0.0
/
SIGN IN