storybook/docs/snippets/web-components/storybook-addon-a11y-disable.js.mdx
2023-05-25 21:04:33 +01:00

17 lines
241 B
Plaintext

```js
// MyComponent.stories.js
export default {
component: 'my-component',
};
export const ExampleStory = {
parameters: {
a11y: {
// This option disables all a11y checks on this story
disable: true,
},
},
};
```