mirror of
https://github.com/LeCoupa/awesome-cheatsheets.git
synced 2026-01-27 13:48:01 -08:00
Compare commits
2 Commits
748dd88e57
...
4e412970aa
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
4e412970aa | ||
|
|
58f626bb22 |
3
frontend/react.js
vendored
3
frontend/react.js
vendored
@@ -136,7 +136,8 @@ class Component extends React.Component {
|
||||
|
||||
// Invoked immediately after updating occurs. This method is not called for the initial render.
|
||||
// Use this as an opportunity to operate on the DOM when the component has been updated.
|
||||
// This is also a good place to do network requests as long as you compare the current props to previous props (e.g. a network request may not be necessary if the props have not changed).
|
||||
// This is also a good place to do network requests as long as you compare the current props to
|
||||
// previous props (e.g. a network request may not be necessary if the props have not changed).
|
||||
componentDidUpdate(prevProps, prevState) { }
|
||||
|
||||
// Invoked immediately before a component is unmounted and destroyed.
|
||||
|
||||
Reference in New Issue
Block a user