storybook/docs/snippets/web-components/component-story-with-accessibility.ts.mdx
2023-01-05 14:53:03 +00:00

33 lines
542 B
Plaintext

```ts
// Button.stories.ts
import type { Meta, StoryObj } from '@storybook/web-components';
const meta: Meta = {
title: 'Accessibility testing',
component: 'custom-button',
argTypes: {
backgroundColor: { control: 'color' },
},
};
export default meta;
type Story = StoryObj;
// 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',
},
};
```