UNPKG

react-native-picker-modal-view

Version:
13 lines (10 loc) 352 B
import { IModalListInDto } from '@Interfaces'; type ListType = IModalListInDto[]; export interface ISelectBoxProps { selectedObject?: IModalListInDto; openModal: () => void; chooseText: string; disabled?: boolean; renderSelectView?: (disabled: boolean, selected: IModalListInDto, showModal: () => void) => React.ReactElement items: ListType; }