16 lines
248 B
JavaScript
16 lines
248 B
JavaScript
|
import { Html, Head, Main, NextScript } from "next/document";
|
||
|
|
||
|
const Document = () => {
|
||
|
return (
|
||
|
<Html lang="en">
|
||
|
<Head />
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default Document;
|