import React from 'react'; interface FormSelectProps { id: string; label: string; value: string; onChange: (value: string) => void; options: { value: string; label: string }[]; disabled?: boolean; placeholder?: string; } export default function FormSelect({ id, label, value, onChange, options, disabled = false, placeholder }: FormSelectProps) { return (