import config from '@automattic/calypso-config'; import clsx from 'clsx'; import { useTranslate } from 'i18n-calypso'; import './style.scss'; const WooBlazeHeader = ( { className = '', children } ) => { const translate = useTranslate(); const isBlazePlugin = config.isEnabled( 'is_running_in_blaze_plugin' ); return (

{ isBlazePlugin ? translate( 'Blaze Ads' ) : translate( 'Advertising' ) }

{ children }
); }; export default WooBlazeHeader;