Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import config from '@automattic/calypso-config';
import BlazePluginHeader from './blaze-plugin-header';
import JetpackBlazeHeader from './jetpack-blaze-header';
const GenericHeader = ( props ) => {
const isBlazePlugin = config.isEnabled( 'is_running_in_blaze_plugin' );
return isBlazePlugin ? <BlazePluginHeader { ...props } /> : <JetpackBlazeHeader { ...props } />;
};
export default GenericHeader;