mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
23 lines
404 B
Plaintext
23 lines
404 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { action } from '@storybook/addon-actions';
|
|
|
|
import { Button } from './button.component';
|
|
|
|
export default {
|
|
component: Button,
|
|
};
|
|
|
|
export const Text = {
|
|
args: {
|
|
label: 'Hello',
|
|
onClick: action('clicked'),
|
|
},
|
|
render: (args) => ({
|
|
props: args,
|
|
template: `<storybook-button [label]="label" (onClick)="onClick()"></storybook-button>`,
|
|
}),
|
|
};
|
|
```
|