INNER CODE UNIT · JavaScript
BottomModal
jacklam718/react-native-modals · src/BottomModal.js:6
class BottomModal extends Modal {
show() {
const { children, ...options } = this.props;
this.id = ModalPortal.show(children, { ...options, type: 'bottomModal' });
}
}
export default BottomModal;