woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/ReusableComponents/Controls/ControlRadioGroup.js

15 lines
291 B
JavaScript
Raw Normal View History

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;