import { noop } from 'lodash' import { RadioGroupCard, RadioGroupCardItem } from 'ui' interface PolicyAllowedOperationProps { operation: string onSelectOperation: (operation: string) => void } const PolicyAllowedOperation = ({ operation = '', onSelectOperation = noop, }: PolicyAllowedOperationProps) => { return (
Select an operation for this policy