Files
the-biergarten-app/pages/_document.tsx
2023-01-15 14:24:09 -05:00

14 lines
231 B
TypeScript

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