woojun-jung's picture
Initial commit
e253d75
raw
history blame contribute delete
233 Bytes
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}