mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
26 lines
485 B
Plaintext
26 lines
485 B
Plaintext
```ts
|
|
//Button.stories.ts
|
|
|
|
import { Story, Meta } from '@storybook/angular/types-6-0';
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
} as Meta;
|
|
|
|
//👇 We create a “template” of how args map to rendering
|
|
const Template: Story<Button> = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
//👇 Each story then reuses that template
|
|
export const Primary = Template.bind({});
|
|
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
```
|