Introduction
Default props let you set a fallback value for a component's property. This means your component still works even if no value is given.
When you want a button to have a default label if none is provided.
When an image component should show a placeholder if no image URL is passed.
When a text input should have a default placeholder text.
When you want to avoid errors from missing props in your components.