File size: 317 Bytes
1e92f2d
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import React from 'react'
import Head from 'next/head'
import Link from 'next/link'

export default (props) => (
  <div id="head-3">
    <Head>
      <meta name="description" content="Head Three" />
      <title></title>
    </Head>
    <Link href="/nav/head-1" id="to-head-1">
      to head 1
    </Link>
  </div>
)