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