UNPKG

@gechiui/components

Version:
15 lines (12 loc) 323 B
/** * GeChiUI dependencies */ import { memo } from '@gechiui/element'; /** * Internal dependencies */ import FooterMessageCell from '../mobile/bottom-sheet/footer-message-cell'; function FooterMessageControl( { ...props } ) { return <FooterMessageCell { ...props } />; } export default memo( FooterMessageControl );