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

Format no-document-title description (#5803)

This commit is contained in:
Peter Halasz 2018-12-03 23:04:18 +01:00 committed by Tim Neutkens
parent 977bf8d9eb
commit 01b34bb784

View file

@ -6,7 +6,7 @@ Adding `<title>` in `pages/_document.js` will lead to unexpected results with `n
#### Possible Ways to Fix It
Set `<title>` in `pages/_app.js` instead :
Set `<title>` in `pages/_app.js` instead:
```js
// pages/_app.js
@ -22,17 +22,20 @@ export default class MyApp extends App {
pageProps = await Component.getInitialProps(ctx)
}
return {pageProps}
return { pageProps }
}
render () {
const {Component, pageProps} = this.props
return <Container>
<Head>
<title>My new cool app</title>
</Head>
<Component {...pageProps} />
</Container>
const { Component, pageProps } = this.props
return (
<Container>
<Head>
<title>My new cool app</title>
</Head>
<Component {...pageProps} />
</Container>
)
}
}
```