import { __ } from '@wordpress/i18n'; // SCSS. import './GlobalFlowItem.scss'; function GlobalFlowItem( { item, isChecked, isActive } ) { const { thumbnail_image_url, title, type, is_recommanded } = item; return ( <> { 'pro' === type ? ( { type } ) : ( '' ) }
{ is_recommanded && ( { __( 'Recommended', 'cartflows' ) } ) }
{ title }
); } export default GlobalFlowItem;