mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 21:21:47 +08:00
20 lines
469 B
Plaintext
20 lines
469 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>
|
|
```
|