woocommerce-paypal-payments/modules/ppcp-settings/resources/js/Components/ReusableComponents/Fields/RadioGroup.js

14 lines
254 B
JavaScript
Raw Normal View History

import { RadioControl } from '@wordpress/components';
const RadioGroup = ( { options, selected, onChange } ) => {
return (
<RadioControl
options={ options }
onChange={ onChange }
selected={ selected }
/>
);
};
export default RadioGroup;