next.js/test/development/pages-dir/client-navigation/fixture/pages/head-with-json-ld-snippet.js
head-with-json-ld-snippet.js13 lines252 B
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>
)
Quest for Codev2.0.0
/
SIGN IN