/var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components
Edit: /var/softaculous/sitepad/editor/site-data/plugins/pagelayer/js/react/src/components/radio.js (771B)
import { useState } from '@wordpress/element';
import { LabelControl } from './label';
export const RadioControl = (props) =>{
const { prop, label, value, setAttributes } = props;
const { name } = prop['c'];
// Radio Click handler
const handleRadioClick = (newValue) => {
setAttributes({ [name]: newValue });
};
return (
);
}