Concept Flow - Spread props
Start with props object
Use {...props} in component
Svelte extracts each key-value
Pass each as individual prop
Component receives props
Render with all props applied
Spread props take an object and pass all its key-value pairs as separate props to a Svelte component.