leaky-ships/leaky-ships/pages/_document.tsx
2023-07-11 19:25:44 +02:00

13 lines
231 B
TypeScript

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