forked from github/plane
18 lines
295 B
TypeScript
18 lines
295 B
TypeScript
|
import Document, { Html, Head, Main, NextScript } from "next/document";
|
||
|
|
||
|
class MyDocument extends Document {
|
||
|
render() {
|
||
|
return (
|
||
|
<Html>
|
||
|
<Head />
|
||
|
<body>
|
||
|
<Main />
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</Html>
|
||
|
);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default MyDocument;
|