next.js/test/development/pages-dir/client-navigation/fixture/pages/nav/head-3.js
head-3.js16 lines317 B
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>
)
Quest for Codev2.0.0
/
SIGN IN