Skip to content

Commit

Permalink
[Documentation] Impreove the react-component section of doc (#9349)
Browse files Browse the repository at this point in the history
* Impreove react-component of doc

[#9304](#9304)

* update description

* add missing space

(cherry picked from commit 359f5d2)
  • Loading branch information
NE-SmallTown authored and flarnie committed Jun 12, 2017
1 parent 7b7a3e9 commit 97542e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/docs/reference-react-component.md
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ If you "fork" props by using them for state, you might also want to implement [`
componentWillMount()
```

`componentWillMount()` is invoked immediately before mounting occurs. It is called before `render()`, therefore setting state in this method will not trigger a re-rendering. Avoid introducing any side-effects or subscriptions in this method.
`componentWillMount()` is invoked immediately before mounting occurs. It is called before `render()`, therefore setting state synchronously in this method will not trigger a re-rendering. Avoid introducing any side-effects or subscriptions in this method.

This is the only lifecycle hook called on server rendering. Generally, we recommend using the `constructor()` instead.

Expand Down

0 comments on commit 97542e7

Please sign in to comment.