mirror of
https://github.com/terribleplan/next.js.git
synced 2024-01-19 02:48:18 +00:00
093b091a5c
* Update styled components example Updates the styled-components example to pass HOC to renderPage() and fix SSR. * fix lint errors
27 lines
663 B
JavaScript
27 lines
663 B
JavaScript
import Document, { Head, Main, NextScript } from 'next/document'
|
|
import { ServerStyleSheet } from 'styled-components'
|
|
|
|
export default class MyDocument extends Document {
|
|
static getInitialProps ({ renderPage }) {
|
|
const sheet = new ServerStyleSheet()
|
|
const page = renderPage(App => props => sheet.collectStyles(<App {...props} />))
|
|
const styleTags = sheet.getStyleElement()
|
|
return { ...page, styleTags }
|
|
}
|
|
|
|
render () {
|
|
return (
|
|
<html>
|
|
<Head>
|
|
<title>My page</title>
|
|
{this.props.styleTags}
|
|
</Head>
|
|
<body>
|
|
<Main />
|
|
<NextScript />
|
|
</body>
|
|
</html>
|
|
)
|
|
}
|
|
}
|