React props vs. state
Only changes in props and state trigger React to re-render components and updates the DOM.
The biggest difference is that re-rendering of the component based on input in state is done entirely within the component, whereas you with using props can r...
coderun.hashnode.dev2 min read