import React from 'react'; import Examples from './utils/Examples.js'; import Checkbox from '../../src/react/Checkbox'; import HTMLCheckboxChecked from '../../components/checkbox/checkbox-checked.html'; import HTMLCheckboxUnchecked from '../../components/checkbox/checkbox-unchecked.html'; import HTMLCheckboxDisabled from '../../components/checkbox/checkbox-disabled.html'; import HTMLCheckboxDisabledChecked from '../../components/checkbox/checkbox-disabled-checked.html'; let examples = { Checked: { jsx: {}} data-test-id='mycheckbox-1' inputRef={() => {} } />, html: HTMLCheckboxChecked }, Unchecked: { jsx: {}} data-test-id='mycheckbox-2' inputRef={() => {} } />, html: HTMLCheckboxUnchecked }, Disabled: { jsx: {}} data-test-id='mycheckbox-4' inputRef={() => {} } />, html: HTMLCheckboxDisabled }, 'Disabled and Checked': { jsx: {}} data-test-id='mycheckbox-4' inputRef={() => {} } />, html: HTMLCheckboxDisabledChecked } }; const Checkboxes = () => ( ); export default Checkboxes;