2019-06-24 00:39:54 +08:00

20 lines
436 B
JavaScript

import { load, addParameters, addDecorator } from '@storybook/html';
import { withA11y } from '@storybook/addon-a11y';
addDecorator(withA11y);
addParameters({
a11y: {
config: {},
options: {
checks: { 'color-contrast': { options: { noScroll: true } } },
restoreScroll: true,
},
},
options: {
hierarchyRootSeparator: /\|/,
},
});
load(require.context('../stories', true, /\.stories\.js$/), module);