1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00

Update styled components example (#2945)

* Update styled components example

Updates the styled-components example to pass HOC to renderPage() and fix SSR.

* fix lint errors
This commit is contained in:
Shaleen Jain 2017-09-14 17:47:18 +05:30 committed by Tim Neutkens
parent 5a305265d9
commit 093b091a5c

View file

@ -2,20 +2,22 @@ import Document, { Head, Main, NextScript } from 'next/document'
import { ServerStyleSheet } from 'styled-components'
export default class MyDocument extends Document {
render () {
static getInitialProps ({ renderPage }) {
const sheet = new ServerStyleSheet()
const main = sheet.collectStyles(<Main />)
const page = renderPage(App => props => sheet.collectStyles(<App {...props} />))
const styleTags = sheet.getStyleElement()
return { ...page, styleTags }
}
render () {
return (
<html>
<Head>
<title>My page</title>
{styleTags}
{this.props.styleTags}
</Head>
<body>
<div className='root'>
{main}
</div>
<Main />
<NextScript />
</body>
</html>