followgraph / pages /_document.tsx
severo's picture
severo HF staff
copy files
b369d17
raw
history blame
231 Bytes
import { Html, Head, Main, NextScript } from 'next/document'
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
)
}