mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 03:01:05 +08:00
26 lines
665 B
Plaintext
26 lines
665 B
Plaintext
```ts
|
|
// Checkbox.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { Checkbox } from './Checkbox.component';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/angular/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Checkbox',
|
|
component: Checkbox,
|
|
} as Meta;
|
|
|
|
export const allCheckboxes: Story = () => ({
|
|
template: `
|
|
<form>
|
|
<Checkbox id="Unchecked" label="Unchecked" />
|
|
<Checkbox id="Checked" label="Checked" checked />
|
|
<Checkbox appearance="secondary" id="second" label="Secondary" checked />
|
|
</form>
|
|
`,
|
|
});
|
|
``` |