Files
Timothy Carambat 2ebf482900 Changelogs and Linter (#42)
* implement 1.5.5 changelog
implement 1.5.6 changelog
add linter support on command

* bump banner

* Patch linter rules
2024-06-11 14:54:10 -07:00

18 lines
305 B
JavaScript

import Document, { Html, Head, Main, NextScript } from "next/document";
class MyDocument extends Document {
render() {
return (
<Html lang="en">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;