Introduction
Props let you send information into a Svelte component from outside. Using export let is how you declare these inputs simply.
You want to pass a user's name into a greeting component.
You need to customize a button's label from its parent component.
You want to reuse a card component with different content each time.
You want to control a component's color or style from outside.
You want to send data from a page to a nested component.