import { Registry } from '@/portainer/environments/environment.service/registries'; import { Select } from '@@/form-components/ReactSelect'; interface Props { value: Registry[]; onChange(value: readonly Registry[]): void; options: Registry[]; inputId?: string; } export function CreateNamespaceRegistriesSelector({ value, onChange, options, inputId, }: Props) { return (