One idea
Props are data you pass from a parent component to a child component. They work like function arguments and let one component customize another component’s output.
Why props matter
Readable React apps are made from small components. A card, button, header, or project row can each be its own component.
But small components need data. Instead of hardcoding the same text in many places, pass the changing parts as props from the parent.