el.xwx.moe/pages/_document.tsx

14 lines
233 B
TypeScript
Raw Normal View History

2023-04-23 08:26:39 -05:00
import { Html, Head, Main, NextScript } from "next/document";
2023-01-22 15:39:35 -06:00
export default function Document() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
2023-04-23 08:26:39 -05:00
);
2023-01-22 15:39:35 -06:00
}