ig.rizaldy.club/pages/_document.js
2024-01-31 00:25:25 +07:00

16 lines
248 B
JavaScript

import { Html, Head, Main, NextScript } from "next/document";
const Document = () => {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
};
export default Document;