import styles from './EnvironmentSelector.module.css'; interface EnvironmentSelectorProps { environments: string[]; value: string | undefined; onChange: (env: string | undefined) => void; } export function EnvironmentSelector({ environments, value, onChange }: EnvironmentSelectorProps) { if (environments.length === 0) return null; return ( ); }