25-plus-5-Clock/pages/_document.tsx
2023-03-31 12:33:10 +11:00

14 lines
233 B
TypeScript

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