mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 13:44:42 +08:00
14 lines
291 B
JavaScript
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;
|