rsnext/test/integration/production-swcminify/pages/with-title.js
2021-10-25 13:49:11 +02:00

10 lines
157 B
JavaScript

import Head from 'next/head'
export default () => (
<>
<Head>
<title>hello from title</title>
</Head>
<p id="with-title">hi</p>
</>
)