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