import { memo } from '@wordpress/element'; import { __ } from '@wordpress/i18n'; const Speech = (props) => { const { className, ...otherProps } = props; return ( {__('Speech', 'extendify-local')} ); }; export default memo(Speech);