Introduction
Props let you send information from one component to another in React. This helps 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 its parent component.
You want to reuse a card component but show different content each time.
You want to pass a function to handle a button click inside a child component.