Introduction
Default prop values let you set a fallback value for a component property. This means the component works well even if no value is given.
You want a button component to show 'Click me' if no label is provided.
You have a card component that should show a default image if none is passed.
You want to avoid errors when a parent forgets to send a prop.
You want to make your component easier to use with sensible defaults.