mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 05:51:21 +08:00
19 lines
465 B
Plaintext
19 lines
465 B
Plaintext
```html
|
|
<!-- Checkbox.stories.svelte -->
|
|
|
|
<script>
|
|
import { Meta, Story } from '@storybook/addon-svelte-csf';
|
|
|
|
import Checkbox from './Checkbox.svelte';
|
|
</script>
|
|
|
|
<Meta title="MDX/Checkbox" component={Checkbox}/>
|
|
|
|
<Story name="allCheckboxes">
|
|
<form>
|
|
<Checkbox id="Unchecked" label="Unchecked" />
|
|
<Checkbox id="Checked" label="Checked" {checked} />
|
|
<Checkbox appearance="secondary" id="second" label="Secondary" {checked} />
|
|
</form>
|
|
</Story>
|
|
``` |