16 lines
190 B
JavaScript
16 lines
190 B
JavaScript
|
import { Head, Html, Main, NextScript } from "next/document"
|
||
|
|
||
|
|
||
|
|
||
|
export default function Document() {
|
||
|
return (
|
||
|
<Html>
|
||
|
<Head/>
|
||
|
<body>
|
||
|
<Main/>
|
||
|
<NextScript/>
|
||
|
</body>
|
||
|
</Html>
|
||
|
)
|
||
|
}
|