ig.rizaldy.club/pages/_document.js

16 lines
248 B
JavaScript
Raw Normal View History

2024-01-31 00:25:25 +07:00
import { Html, Head, Main, NextScript } from "next/document";
const Document = () => {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
};
export default Document;