mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
16 lines
296 B
JavaScript
16 lines
296 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'
|
||
|
/>
|
||
|
</Head>
|
||
|
<Link href='/nav/head-1'>
|
||
|
<a id='to-head-1'>to head 1</a>
|
||
|
</Link>
|
||
|
</div>
|