mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-09 00:19:13 +08:00
18 lines
272 B
Plaintext
18 lines
272 B
Plaintext
```js
|
|
// MyComponent.stories.js
|
|
|
|
export default {
|
|
title: 'Disable a11y addon',
|
|
component: 'my-component',
|
|
};
|
|
|
|
export const ExampleStory = {
|
|
parameters: {
|
|
a11y: {
|
|
// This option disables all a11y checks on this story
|
|
disable: true,
|
|
},
|
|
},
|
|
};
|
|
```
|