Xianbao QIAN
Adapt the heatmap code for AI policy
31767a7
raw
history blame
312 Bytes
import Document, { Html, Head, Main, NextScript } from 'next/document';
class MyDocument extends Document {
render() {
return (
<Html className="dark">
<Head />
<body>
<Main />
<NextScript />
</body>
</Html>
);
}
}
export default MyDocument;