import { FeatureFlagDecorator } from '@roleypoly/misc-utils/featureFlags/react/storyDecorator'; import * as React from 'react'; import { FeatureGate } from './FeatureGate'; export default { title: 'Atoms/Feature Gate', decorators: [FeatureFlagDecorator(['AllowListBlockList'])], }; export const ActiveGate = () => ( {() =>
hello!
}
); export const InactiveGate = () => ( {() =>
hello!
}
);