mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
34 lines
524 B
Plaintext
34 lines
524 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Meta } from '@storybook/angular/types-6-0';
|
|
|
|
import Button from './button.component';
|
|
|
|
export default {
|
|
title: 'Components/Button',
|
|
component: Button,
|
|
} as Meta;
|
|
|
|
export const Primary = () => ({
|
|
props: {
|
|
label: 'Button',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
|
|
export const Secondary = () => ({
|
|
props: {
|
|
label: '😄👍😍💯',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
|
|
export const Tertiary = () => ({
|
|
props: {
|
|
label: '📚📕📈🤓',
|
|
background: '#ff0',
|
|
},
|
|
});
|
|
```
|