interface SectionHeadingProps { id: string title: string subtitle?: string className?: string } /** 섹션 제목. `id`는 섹션의 aria-labelledby 대상이다. */ export function SectionHeading({ id, title, subtitle, className = '' }: SectionHeadingProps) { return (

{title}

{subtitle && (

{subtitle}

)}
) }