rsnext/examples/with-react-hook-form/pages/_document.tsx

14 lines
223 B
TypeScript
Raw Normal View History

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