cosmo-ui
Version:
Common React components
10 lines (7 loc) • 310 B
text/typescript
import { FormFieldProps, FormFieldComponentProps } from './form-field'
export interface SelectProps extends FormFieldProps<any> {
options: any[]
}
export interface SelectComponentProps extends SelectProps, FormFieldComponentProps<any> {
options: any[] // repeat here to confirm that it is required
}