Introduction
Default props let you set a fallback value for a component's property. This helps your component work well even if some props are missing.
You want a button to show 'Click me' if no label is given.
A user profile should show 'Guest' if no name is provided.
A card component should have a default background color if none is set.
You want to avoid errors when a prop is not passed to a component.