mirror of
https://github.com/r-freeman/portfolio.git
synced 2024-11-13 17:05:42 +00:00
18 lines
345 B
JavaScript
18 lines
345 B
JavaScript
import Document, {Html, Head, Main, NextScript} from 'next/document';
|
|
|
|
class Doc extends Document {
|
|
render() {
|
|
return (
|
|
<Html lang="en">
|
|
<Head/>
|
|
<body>
|
|
<Main/>
|
|
<NextScript/>
|
|
</body>
|
|
</Html>
|
|
)
|
|
}
|
|
}
|
|
|
|
export default Doc;
|