woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/ReusableComponents/Controls/ControlRadioGroup.js
2025-01-23 16:04:06 +01:00

14 lines
291 B
JavaScript

import { Action } from '../Elements';
import { RadioGroup } from '../Fields';
const ControlRadioGroup = ( { options, value, onChange } ) => (
<Action>
<RadioGroup
options={ options }
selected={ value }
onChange={ onChange }
/>
</Action>
);
export default ControlRadioGroup;