mirror of
https://github.com/storybookjs/storybook.git
synced 2025-03-28 05:10:17 +08:00
21 lines
484 B
Plaintext
21 lines
484 B
Plaintext
```md
|
|
<!--- Checkbox.stories.mdx --->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import Checkbox from './checkbox.component';
|
|
|
|
<Meta title="MDX/Checkbox" component={Checkbox} />
|
|
|
|
<Story name="MyStory">
|
|
{{
|
|
template: `
|
|
<form>
|
|
<Checkbox id="Unchecked" label="Unchecked" />
|
|
<Checkbox id="Checked" label="Checked" checked />
|
|
<Checkbox appearance="secondary" id="second" label="Secondary" checked />
|
|
</form>
|
|
`,
|
|
}}
|
|
</Story>
|
|
``` |