react-code-dataset / next.js /test /integration /client-navigation-a11y /pages /page-with-h1-and-title.js
| import Head from 'next/head' | |
| export default () => ( | |
| <div id="page-with-h1-and-title"> | |
| <Head> | |
| <title>Another Page's Title</title> | |
| </Head> | |
| <h1>My heading</h1> | |
| <div>Extraneous stuff</div> | |
| </div> | |
| ) | |