react-code-dataset
/
next.js
/test
/development
/pages-dir
/client-navigation
/fixture
/pages
/nav
/head-2.js
| 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" id="to-head-1"> | |
| to head 1 | |
| </Link> | |
| </div> | |
| ) | |