import React from 'react'; import Examples from './utils/Examples.js'; import Radio from '../../src/react/Radio'; import HTMLRadioChecked from '../../components/radio/radio-checked.html'; import HTMLRadioUnchecked from '../../components/radio/radio-unchecked.html'; import HTMLRadioDisabled from '../../components/radio/radio-disabled.html'; import HTMLRadioDisabledChecked from '../../components/radio/radio-disabled-checked.html'; let examples = { Checked: { jsx: {}} data-test-id='myradio-1' inputRef={() => {} } />, html: HTMLRadioChecked }, Unchecked: { jsx: {}} data-test-id='myradio-2' inputRef={() => {} } />, html: HTMLRadioUnchecked }, Disabled: { jsx: {}} data-test-id='myradio-4' inputRef={() => {} } />, html: HTMLRadioDisabled }, 'Disabled and Checked': { jsx: {}} data-test-id='myradio-4' inputRef={() => {} } />, html: HTMLRadioDisabledChecked } }; const Radios = () => ( ); export default Radios;