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

Update Readme.md

This commit is contained in:
Guillermo Rauch 2016-10-08 17:50:09 -07:00 committed by GitHub
parent dfe1bc70a4
commit ee0356c492

View file

@ -85,8 +85,8 @@ When state, lifecycle hooks or initial data population you can export a `React.C
```jsx
import React from 'react'
export default class extends React.Component {
static async getInitialProps ({ isServer, req }) {
return isServer
static async getInitialProps ({ req }) {
return req
? { userAgent: req.headers.userAgent }
: { userAgent: navigator.userAgent }
}