mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
Added a11y addon to the CRA TS example
This commit is contained in:
parent
3d9aeae7df
commit
f9069d8ac0
@ -1,2 +1,3 @@
|
||||
import '@storybook/addon-actions/register';
|
||||
import '@storybook/addon-options/register';
|
||||
import '@storybook/addon-a11y/register';
|
||||
|
@ -1,6 +1,8 @@
|
||||
import { configure, addDecorator, addParameters } from '@storybook/react';
|
||||
import { withInfo } from '@storybook/addon-info';
|
||||
import { withA11y } from '@storybook/addon-a11y';
|
||||
|
||||
addDecorator(withA11y);
|
||||
addParameters({
|
||||
options: {
|
||||
brandTitle: 'CRA TypeScript Kitchen Sink',
|
||||
|
@ -14,6 +14,7 @@
|
||||
"react-dom": "^16.8.4"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@storybook/addon-a11y": "5.1.0-alpha.34",
|
||||
"@storybook/addon-actions": "5.1.0-alpha.34",
|
||||
"@storybook/addon-info": "5.1.0-alpha.34",
|
||||
"@storybook/addon-options": "5.1.0-alpha.34",
|
||||
|
Loading…
x
Reference in New Issue
Block a user