Concept Flow - Declaring props with export let
Start Component
Declare prop with export let
Parent passes value
Prop initialized with passed value
Component uses prop in template
Render output with prop value
The component declares a prop using 'export let'. The parent passes a value, which initializes the prop. The component then uses this prop in its template to render dynamic content.