mirror of
https://github.com/theoludwig/react-component-form.git
synced 2024-07-17 07:30:13 +02:00
16 lines
306 B
TypeScript
16 lines
306 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document'
|
|
|
|
const Document: React.FC = () => {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body className='bg-white text-black dark:bg-black dark:text-white'>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
|
|
export default Document
|