ReactNative中封装一个组件
在ReactNative封装一个组件定义组件的Props1234567891011121314151617181920type ModalProps = Partial<React.ComponentProps<typeof Modal>>type dataItem = { icon: string, title: string, color: string, handle?: (params: any) => void}interface ModalComponentProps extends Omit<ModalProps, 'list' | 'ref' | 'title'> { title: string; list?: dataItem[]; /..
Read more