storybook/docs/snippets/angular/component-story-with-accessibility.ts.mdx
2022-07-15 11:09:15 -07:00

34 lines
707 B
Plaintext

```ts
// Button.stories.ts
import type { Meta, Story } from '@storybook/angular';
import { Button } from './Button.component';
export default {
/* 👇 The title prop is optional.
* See https://storybook.js.org/docs/7.0/angular/configure/overview#configure-story-loading to learn how to generate automatic titles
*/
title: 'Accessibility testing',
component: Button,
argTypes: {
backgroundColor: { control: 'color' },
},
} as Meta;
// This is an accessible story
export const Accessible: Story = {
args: {
primary: false,
label: 'Button',
},
};
// This is not
export const Inaccessible: Story = {
args: {
...Accessible.args,
backgroundColor: 'red',
},
};
```