Use forms with or without client-side JavaScript--no code duplication required!
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 

14 satır
231 B

  1. import { Html, Head, Main, NextScript } from 'next/document'
  2. export default function Document() {
  3. return (
  4. <Html lang="en">
  5. <Head />
  6. <body>
  7. <Main />
  8. <NextScript />
  9. </body>
  10. </Html>
  11. )
  12. }