15 lines
304 B
TypeScript
15 lines
304 B
TypeScript
import { Html, Head, Main, NextScript } from 'next/document';
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head />
|
|
<body>
|
|
<Main />
|
|
{/* Here we will mount our modal portal */}
|
|
<div id="modal-root"/>
|
|
<NextScript />
|
|
</body>
|
|
</Html>
|
|
)
|
|
} |