Roadmap to becoming a developer in 2022
 
 
 
 
 

792 B

Props vs State

Props (short for “properties”) and state are both plain JavaScript objects. While both hold information that influences the output of component render, they are different in one important way: props get passed to the component (similar to function parameters) whereas state is managed within the component (similar to variables declared within a function).

Free Content Component State What is the difference between state and props in React?