mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
24 lines
549 B
Plaintext
24 lines
549 B
Plaintext
```md
|
|
<!--- Checkbox.stories.mdx --->
|
|
|
|
import { Canvas, Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Checkbox } from './checkbox.component';
|
|
|
|
<Meta title="MDX/Checkbox" component={Checkbox} />
|
|
|
|
<Canvas>
|
|
<Story
|
|
name="all checkboxes">
|
|
{{
|
|
template: `
|
|
<form>
|
|
<Checkbox id="Unchecked" label="Unchecked" />
|
|
<Checkbox id="Checked" label="Checked" checked />
|
|
<Checkbox appearance="secondary" id="second" label="Secondary" checked />
|
|
</form>
|
|
`,
|
|
}}
|
|
</Story>
|
|
</Canvas>
|
|
``` |