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:
parent
0b3b59fb1e
commit
bf738e2ea5
1 changed files with 18 additions and 0 deletions
18
apps/admin-x-settings/src/components/BehindFeatureFlag.tsx
Normal file
18
apps/admin-x-settings/src/components/BehindFeatureFlag.tsx
Normal 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;
|
Loading…
Add table
Reference in a new issue