UNPKG

react-native-jsmodal

Version:
14 lines (10 loc) 294 B
// @flow import ModalPortal from './ModalPortal'; import Modal from './Modal'; class BottomModal extends Modal { show() { const { children, ...options } = this.props; this.id = ModalPortal.innerShow(children, { ...options, type: 'bottomModal' }); } } export default BottomModal;