Skip to content

Commit

Permalink
TEMP: Doc example in File Picker section
Browse files Browse the repository at this point in the history
  • Loading branch information
cchaos committed Sep 17, 2019
1 parent b527002 commit 55bf446
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions src-docs/src/views/form_controls/file_picker.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ import {
EuiText,
EuiSpacer,
EuiSwitch,
EuiCheckboxGroup,
} from '../../../../src/components';

export class FilePicker extends Component {
Expand Down Expand Up @@ -80,6 +81,24 @@ export class FilePicker extends Component {
</EuiText>
</EuiFlexItem>
</EuiFlexGroup>

<EuiCheckboxGroup
options={[
{
id: '0',
label: 'Option one',
},
{
id: '1',
label: 'Option two is checked by default',
},
{
id: '2',
label: 'Option three',
},
]}
onChange={() => {}}
/>
</Fragment>
);
}
Expand Down

0 comments on commit 55bf446

Please sign in to comment.