0
Fork 0
mirror of https://github.com/TryGhost/Ghost.git synced 2025-04-01 02:41:39 -05:00

Added new BehindFeatureFlag component

This can be used to hide UI based on feature flags
This commit is contained in:
Fabien O'Carroll 2024-10-10 15:04:39 +01:00 committed by Aileen Booker
parent 0b3b59fb1e
commit bf738e2ea5

View file

@ -0,0 +1,18 @@
import React, { ReactNode } from 'react';
import useFeatureFlag from '../hooks/useFeatureFlag';
type BehindFeatureFlagProps = {
flag: string
children: ReactNode
};
const BehindFeatureFlag: React.FC<BehindFeatureFlagProps> = ({flag, children}) => {
const enabled = useFeatureFlag(flag);
if (!enabled) {
return null;
}
return <>{children}</>;
};
export default BehindFeatureFlag;