mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-06 10:55:00 +08:00
14 lines
254 B
JavaScript
14 lines
254 B
JavaScript
|
import { RadioControl } from '@wordpress/components';
|
||
|
|
||
|
const RadioGroup = ( { options, selected, onChange } ) => {
|
||
|
return (
|
||
|
<RadioControl
|
||
|
options={ options }
|
||
|
onChange={ onChange }
|
||
|
selected={ selected }
|
||
|
/>
|
||
|
);
|
||
|
};
|
||
|
|
||
|
export default RadioGroup;
|