Skip to content
Snippets Groups Projects
_document.tsx 278 B
Newer Older
import { Html, Head, Main, NextScript } from 'next/document'

export default function Document() {
  return (
    <Html lang="en" className="h-full bg-white">
      <body className='h-full'>
        <Main />
        <NextScript />
      </body>
    </Html>
  )
}