rsnext/test/integration/custom-routes/pages/with-params.js

11 lines
209 B
JavaScript
Raw Normal View History

2019-11-09 23:34:53 +01:00
import { useRouter } from 'next/router'
const Page = () => {
const { query } = useRouter()
return <p>{JSON.stringify(query)}</p>
}
Page.getInitialProps = () => ({ hello: 'GIPGIP' })
export default Page