Added a11y addon to the CRA TS example

This commit is contained in:
codebyalex 2019-04-26 18:33:32 -04:00
parent 3d9aeae7df
commit f9069d8ac0
3 changed files with 4 additions and 0 deletions

View File

@ -1,2 +1,3 @@
import '@storybook/addon-actions/register';
import '@storybook/addon-options/register';
import '@storybook/addon-a11y/register';

View File

@ -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',

View File

@ -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",