19 lines
231 B
JavaScript
19 lines
231 B
JavaScript
/** @jsxImportSource @emotion/react */
|
|
|
|
|
|
import { Head, Html, Main, NextScript } from "next/document"
|
|
|
|
|
|
|
|
export default function Document() {
|
|
return (
|
|
<Html>
|
|
<Head/>
|
|
<body>
|
|
<Main/>
|
|
<NextScript/>
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|