import config from '@automattic/calypso-config';
import JetpackLogo from 'calypso/components/jetpack-logo';
import NavigationHeaderImpr, {
HeaderProps,
} from 'calypso/components/navigation-header/navigation-header';
import { STATS_PRODUCT_NAME, STATS_PRODUCT_NAME_IMPR } from '../../constants';
function PageHeader( { titleProps, ...otherProps }: HeaderProps ) {
const isOdysseyStats = config.isEnabled( 'is_running_in_jetpack_site' );
if ( isOdysseyStats ) {
return (
,
...titleProps,
} }
{ ...otherProps }
/>
);
}
return (
);
}
export default PageHeader;