mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-09-04 08:47:23 +08:00
13 lines
254 B
JavaScript
13 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;
|