rsnext/test/integration/production/pages/query.js
Joe Haddad b3170d2648
Format missed files (#7464)
* Format missed files

* Remove unnecessary rule

* Fix type error
2019-05-29 18:19:32 -07:00

17 lines
338 B
JavaScript

import { withRouter } from 'next/router'
const Page = ({ router: { query } }) => (
<>
<p id={'q' + query.id}>{query.id}</p>
<a id='first' href='/query?id=1'>
Go to ?id=1
</a>
<a id='second' href='/query?id=2'>
Go to ?id=2
</a>
</>
)
Page.getInitialProps = () => ({})
export default withRouter(Page)