rsnext/test/integration/query-with-encoding/pages/space.js

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
324 B
JavaScript
Raw Normal View History

import Link from 'next/link'
const Another = () => (
<div>
<Link href="/?another=hello%20" id="hello-space">
Hello Space
</Link>
<br />
<Link
href={{ pathname: '/', query: { complex: 'yes ' } }}
id="hello-complex"
>
Hello Complex
</Link>
</div>
)
export default Another