UNPKG

react-native-modals

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