@wordpress/components
Version:
UI components for WordPress.
20 lines (16 loc) • 444 B
JavaScript
import { createElement } from "@wordpress/element";
/**
* WordPress dependencies
*/
import { memo } from '@wordpress/element';
/**
* Internal dependencies
*/
import FooterMessageCell from '../mobile/bottom-sheet/footer-message-cell';
function FooterMessageControl(_ref) {
let { ...props
} = _ref;
return createElement(FooterMessageCell, props);
}
export default memo(FooterMessageControl);
//# sourceMappingURL=index.native.js.map