React Props and State Yesterday I explored the difference between props and state: Props: is data sent to the component from the outside, from a "parent" component, as config, as parameters, to be used by the component but are immutable. State: is data that lives inside the component, as local variables, that …
Read More