Introduction
Props let you pass information from one component to another in React. They help components share data and work together.
You want to show a user's name inside a greeting component.
You need to customize a button's label and color from outside the button component.
You want to reuse a card component but show different content each time.
You want to send a number to a counter component to start counting from that number.