Skip to content

Commit

Permalink
Update Disabled storybook story component to only have three examples
Browse files Browse the repository at this point in the history
  • Loading branch information
brentswisher committed Mar 25, 2020
1 parent 032dd10 commit e176a85
Show file tree
Hide file tree
Showing 2 changed files with 73 additions and 552 deletions.
18 changes: 0 additions & 18 deletions packages/components/src/disabled/stories/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,6 @@ import Disabled from '../';
import SelectControl from '../../select-control/';
import TextControl from '../../text-control/';
import TextareaControl from '../../textarea-control/';
import CheckboxControl from '../../checkbox-control/';
import RadioControl from '../../radio-control/';
import RangeControl from '../../range-control/';
import ToggleControl from '../../toggle-control/';
import FormFileUpload from '../../form-file-upload/';
import AnglePickerControl from '../../angle-picker-control/';

export default {
title: 'Components/Disabled',
Expand All @@ -32,18 +26,6 @@ export const _default = () => {
{ value: 'c', label: 'Option C' },
] }
/>
<CheckboxControl label="Checkbox Control" />
<RadioControl
label="Radio Control"
options={ [
{ label: 'Option A', value: 'a' },
{ label: 'Option B', value: 'b' },
] }
/>
<RangeControl label="Range Control" min={ 2 } max={ 10 } />
<ToggleControl label="Toggle Control" />
<FormFileUpload accept="image/*">Upload</FormFileUpload>
<AnglePickerControl />
</Disabled>
);
};
Loading

0 comments on commit e176a85

Please sign in to comment.