mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:11:06 +08:00
22 lines
388 B
Plaintext
22 lines
388 B
Plaintext
```md
|
|
<!-- MyComponent.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
<Meta
|
|
title="Disable a11y addon"
|
|
component={MyComponent} />
|
|
|
|
<Story
|
|
name="NonA11yStory"
|
|
parameters={{
|
|
a11y: {
|
|
// This option disables all a11y checks on this story
|
|
disable: true,
|
|
},
|
|
}}>
|
|
<MyComponent />
|
|
</Story>
|
|
``` |