interface Props { index: string label: string id?: string } export function SectionLabel({ index, label, id }: Props) { return (
{index} {label}
) }