import React, {FC} from 'react'; import { components as RS, MultiValueGenericProps, MultiValueProps, MultiValueRemoveProps, } from 'react-select'; const Container: FC = (props) => { return ; }; const Value: FC = (props) => { return ; }; const Label: FC = (props) => { return ; }; const Remove: FC = (props) => { return ; }; export const DropdownMultiComponent = Object.assign(Container, { Value, Label, Remove, });