native-base
Version:
Essential cross-platform UI components for React Native
14 lines (12 loc) • 596 B
JavaScript
import ActionsheetMain from './Actionsheet';
import ActionsheetItem from './ActionsheetItem'; // import ActionsheetHeader from './ActionsheetHeader';
// import ActionsheetFooter from './ActionsheetFooter';
import ActionsheetContent from './ActionsheetContent';
const ActionsheetTemp = ActionsheetMain;
ActionsheetTemp.Content = ActionsheetContent;
ActionsheetTemp.Item = ActionsheetItem; // ActionsheetTemp.Header = ActionsheetHeader;
// ActionsheetTemp.Footer = ActionsheetFooter;
// To add typings
const Actionsheet = ActionsheetTemp;
export { Actionsheet };
//# sourceMappingURL=index.js.map