/** * External dependencies */ import classnames from 'classnames'; /** * Internal dependencies */ import OptionLayout from './option-layout'; const Option = ( { checked, name, onChange, option } ) => { const { value, label, description, secondaryLabel, secondaryDescription, } = option; const onChangeValue = ( event ) => onChange( event.target.value ); return ( ); }; export default Option;