interface SettingsSectionProps { title: string; description: string; control: React.ReactNode; } export const PreferencesSection = ({ title, description, control }: SettingsSectionProps) => (

{title}

{description}

{control}
);