rsnext/test/integration/client-navigation/pages/nav/head-2.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

15 lines
334 B
JavaScript

import React from 'react'
import Head from 'next/head'
import Link from 'next/link'
export default props => (
<div id="head-2">
<Head>
<meta name="description" content="Head Two" />
<title>this is head-2</title>
</Head>
<Link href="/nav/head-1">
<a id="to-head-1">to head 1</a>
</Link>
</div>
)