File size: 403 Bytes
1e92f2d
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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;