Files
explainegy-nextjs/pages/_document.tsx
2023-02-07 15:42:40 +01:00

14 lines
270 B
TypeScript

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