Reading-Notes

Class 05 Summary:

Thinking in React:




  1. if the data passed from parent using props , isn’t state.

  2. if the data unchanged , is’nt state.

  3. if the data can computed by another state or component , isn’t state.


  1. every component render anything based on that state must be identify.

  2. identify component contain all component related to the state.

  3. the common or another component should have the state.