You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Whenever we call `setStatae`, React calls the `render()` method again for us so that the state that was just updated can be rendered in the UI. This is how interactivity in `App` is built in React:
343
+
Whenever we call `setState`, React calls the `render()` method again for us so that the state that was just updated can be rendered in the UI. This is how interactivity in `App` is built in React:
344
344
345
345
1. Initialize `state` to the default values you would like to render
0 commit comments