File size: 252 Bytes
1e92f2d |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
import React from 'react'
import Head from 'next/head'
export default () => (
<div>
<Head>
{/* this should not cause a warning */}
<script type="application/ld+json"></script>
</Head>
<h1>I can have meta tags</h1>
</div>
)
|