This repository has been archived on 2024-06-14. You can view files and clone it, but cannot push or open issues or pull requests.
icynet-admin/pages/_document.tsx

14 lines
223 B
TypeScript
Raw Normal View History

2022-08-29 18:09:28 +00:00
import { Head, Html, Main, NextScript } from 'next/document';
2022-08-29 18:34:46 +00:00
2022-08-29 18:09:28 +00:00
export default function Document() {
return (
<Html>
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}