import React from 'react'; import Examples from './utils/Examples.js'; import RadioGroup from '../../src/react/RadioGroup'; import HTMLRadioGroup from '../../components/radioGroup/radio-group.html'; import HTMLRadioGroupValue from '../../components/radioGroup/radio-group-value.html'; import HTMLRadioGroupDisabled from '../../components/radioGroup/radio-group-disabled.html'; import HTMLRadioGroupNoTitle from '../../components/radioGroup/radio-group-no-title.html'; let examples = { 'Value': { jsx: {}} data-test-id='grp2' options={[{value: '1', label: 'option 1'}, {value: '2', label: 'option 2'}]} />, html: HTMLRadioGroupValue }, 'No Value': { jsx: {}} data-test-id='grp3' options={[{value: '1', label: 'option 1'}, {value: '2', label: 'option 2'}]} />, html: HTMLRadioGroup }, 'Disabled': { jsx: {}} data-test-id='grp4' options={[{value: '1', label: 'option 1'}, {value: '2', label: 'option 2'}]} />, html: HTMLRadioGroupDisabled }, 'No title': { jsx: {}} data-test-id='grp4' options={[{value: '1', label: 'option 1'}, {value: '2', label: 'option 2'}]} />, html: HTMLRadioGroupNoTitle } }; const RadioGroups = () => ( ); export default RadioGroups;