rsnext/examples/head-elements/pages/index.js
2020-05-18 17:44:18 -04:00

15 lines
335 B
JavaScript

import Head from 'next/head'
export default function Home() {
return (
<div>
<Head>
<title>This page has a title 🤔</title>
<meta charSet="utf-8" />
<meta name="viewport" content="initial-scale=1.0, width=device-width" />
</Head>
<h1>This page has a title 🤔</h1>
</div>
)
}