storybook/docs/snippets/web-components/storybook-addon-a11y-disable.js.mdx
2023-01-05 14:53:03 +00:00

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,
},
},
};
```