Devendra174's picture
Upload folder using huggingface_hub
1e92f2d verified
import { get } from 'lodash';
import shouldCalypsoifyJetpack from 'calypso/state/selectors/should-calypsoify-jetpack';
export const isEligibleForGutenframe = ( state, siteId ) => {
return (
shouldCalypsoifyJetpack( state, siteId ) &&
get( state, [ 'gutenbergIframeEligible', siteId ], true )
);
};
export default isEligibleForGutenframe;