UNPKG

@janiscommerce/ui-native

Version:
10 lines (9 loc) 409 B
import React, { forwardRef } from 'react'; import { BaseDetailModal, BaseDetailSwipe } from './components'; const BaseDetail = forwardRef((props, ref) => { if (props.componentType === 'swipe') { return <BaseDetailSwipe {...props} ref={ref} enablePanDownToClose index={-1}/>; } return <BaseDetailModal {...props} fullScreen componentType="modal" ref={ref}/>; }); export default BaseDetail;