mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 08:01:20 +08:00
34 lines
745 B
Plaintext
34 lines
745 B
Plaintext
```ts
|
|
// Button.stories.ts
|
|
|
|
import { Meta, Story } from '@storybook/angular';
|
|
|
|
import { Button } from './Button.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: 'Accessibility testing',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
} as Meta;
|
|
|
|
const Template: Story = (args) => ({
|
|
props: args,
|
|
});
|
|
|
|
export const Accessible: Story = Template.bind({});
|
|
Accessible.args = {
|
|
primary: false,
|
|
label: 'Button',
|
|
};
|
|
|
|
export const Inaccessible: Story = Template.bind({});
|
|
Inaccessible.args = {
|
|
...Accessible.args,
|
|
backgroundColor: 'red',
|
|
};
|
|
``` |