mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
26 lines
582 B
JavaScript
26 lines
582 B
JavaScript
|
import Document, { Head, Main, NextScript } from 'next/document'
|
||
|
import { ServerStyleSheet } from 'styled-components'
|
||
|
|
||
|
export default class MyDocument extends Document {
|
||
|
render () {
|
||
|
const sheet = new ServerStyleSheet()
|
||
|
const main = sheet.collectStyles(<Main />)
|
||
|
const styleTags = sheet.getStyleElement()
|
||
|
|
||
|
return (
|
||
|
<html>
|
||
|
<Head>
|
||
|
<title>My page</title>
|
||
|
{styleTags}
|
||
|
</Head>
|
||
|
<body>
|
||
|
<div className='root'>
|
||
|
{main}
|
||
|
</div>
|
||
|
<NextScript />
|
||
|
</body>
|
||
|
</html>
|
||
|
)
|
||
|
}
|
||
|
}
|