import _ from 'lodash'; import { Select } from '@@/form-components/ReactSelect'; interface Namespace { id: string; name: string; } interface Props { name?: string; value: string[]; onChange(value: string[]): void; namespaces: Namespace[]; dataCy?: string; inputId?: string; placeholder?: string; } export function NamespacesSelector({ name, value, onChange, namespaces, dataCy, inputId, placeholder, }: Props) { return (