Cleanup: fix React formatting
This commit is contained in:
parent
aff701a600
commit
ba699dd29e
2
react.md
2
react.md
|
@ -281,6 +281,7 @@ Lifecycle
|
||||||
{: .-two-column}
|
{: .-two-column}
|
||||||
|
|
||||||
### Mounting
|
### Mounting
|
||||||
|
|
||||||
| Method | Description |
|
| Method | Description |
|
||||||
| ------------------------ | ---------------------------------------------------------------------------------------------------- |
|
| ------------------------ | ---------------------------------------------------------------------------------------------------- |
|
||||||
| `constructor` _(props)_ | Before rendering [#](https://reactjs.org/docs/react-component.html#constructor) |
|
| `constructor` _(props)_ | Before rendering [#](https://reactjs.org/docs/react-component.html#constructor) |
|
||||||
|
@ -296,6 +297,7 @@ Set initial the state on `constructor()`.
|
||||||
Add DOM event handlers, timers (etc) on `componentDidMount()`, then remove them on `componentWillUnmount()`.
|
Add DOM event handlers, timers (etc) on `componentDidMount()`, then remove them on `componentWillUnmount()`.
|
||||||
|
|
||||||
### Updating
|
### Updating
|
||||||
|
|
||||||
| Method | Description |
|
| Method | Description |
|
||||||
| ------------------------------------------------------- | ---------------------------------------------------- |
|
| ------------------------------------------------------- | ---------------------------------------------------- |
|
||||||
| `componentDidUpdate` _(prevProps, prevState, snapshot)_ | Use `setState()` here, but remember to compare props |
|
| `componentDidUpdate` _(prevProps, prevState, snapshot)_ | Use `setState()` here, but remember to compare props |
|
||||||
|
|
Loading…
Reference in New Issue