word-to-code / pages /_document.js
tinazone's picture
Upload 44 files
21d7fc3 verified
raw
history blame
257 Bytes
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body className="antialiased">
<Main />
<NextScript />
</body>
</Html>
);
}