25-plus-5-Clock/pages/_document.tsx

14 lines
233 B
TypeScript
Raw Normal View History

2023-03-31 03:29:53 +02:00
import { Html, Head, Main, NextScript } from "next/document";
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}