Files
Michess/client/src/pages/_document.tsx
Nathaniel Tampus 862cada547 switch to next.js
- init next app
- add daisyUI
2023-02-13 23:12:16 +08: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>
);
}