mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:31:06 +08:00
36 lines
824 B
Plaintext
36 lines
824 B
Plaintext
```ts
|
|
// Button.stories.ts|tsx
|
|
|
|
import React from 'react';
|
|
|
|
import type { ComponentStoryObj, ComponentMeta } from '@storybook/react';
|
|
|
|
import { Button } from './Button';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading to learn how to generate automatic titles
|
|
*/
|
|
title: 'Accessibility testing',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
} as ComponentMeta<typeof Button>;
|
|
|
|
// This is an accessible story
|
|
export const Accessible: ComponentStoryObj<typeof Button> = {
|
|
args: {
|
|
primary: false,
|
|
label: 'Button',
|
|
},
|
|
};
|
|
|
|
// This is not
|
|
export const Inaccessible: ComponentStoryObj<typeof Button> = {
|
|
args: {
|
|
...Accessible.args,
|
|
backgroundColor: 'red',
|
|
},
|
|
};
|
|
``` |