React passes data between components through States and Props.
Props are read-only data that are passed from one component to another. States represent data that change over time. States can only be used in Class components, not in Function components.
Continue reading “[React] Props & States”