mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:11:29 +08:00
40 lines
837 B
Plaintext
40 lines
837 B
Plaintext
```md
|
|
<!-- Checkbox.stories.mdx -->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Checkbox } from './Checkbox';
|
|
|
|
<Meta title="MDX/Checkbox" component={Checkbox} />
|
|
|
|
export const Template = (args) => <Checkbox {...args} />;
|
|
|
|
# Checkbox
|
|
|
|
With `MDX`, we can define a story for `Checkbox` right in the middle of our
|
|
Markdown documentation.
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="Unchecked"
|
|
args={{
|
|
label: 'Unchecked',
|
|
}}
|
|
render={(args) => <Checkbox {...args} />} />
|
|
<Story
|
|
name="Checked"
|
|
args={{
|
|
label: 'Unchecked',
|
|
checked: true,
|
|
}}
|
|
render={(args) => <Checkbox {...args} />} />
|
|
<Story
|
|
name="Secondary"
|
|
args={{
|
|
label: 'Secondary',
|
|
checked: true,
|
|
appearance: 'secondary',
|
|
}}
|
|
render={(args) => <Checkbox {...args} />} />
|
|
</Canvas>
|
|
``` |