1 2 3 4 5 6 7 8
--- // Write your component code in this file! export interface Props { prefix?: string } --- <div>{Astro.props.prefix} My special component</div>