rsnext/test/integration/client-navigation/pages/nav/as-path-query.js
Joe Haddad 18a9c7e371
Improve linting rules to catch more errors (#9374)
* Update `packages/`

* Update examples

* Update tests

* Update bench

* Update top level files

* Fix build

* trigger
2019-11-10 19:24:53 -08:00

32 lines
759 B
JavaScript

import Link from 'next/link'
import { withRouter } from 'next/router'
export default withRouter(({ router: { asPath, query } }) => {
return (
<div
id={asPath
.replace('/', '')
.replace('/', '-')
.replace('?', '-')
.replace('=', '-')}
>
<div id="router-query">{JSON.stringify(query)}</div>
<div>
<Link
href="/nav/as-path-query?something=hello"
as="/something/hello?something=hello"
>
<a id="hello">hello</a>
</Link>
</div>
<div>
<Link
href="/nav/as-path-query?something=else"
as="/something/hello?something=else"
>
<a id="hello2">hello</a>
</Link>
</div>
</div>
)
})