Norbert de Langen 88a8f00f00
Linting
2017-11-12 00:19:51 +01:00

14 lines
321 B
JavaScript

import addons from '@storybook/addons';
import A11yManager from './A11yManager';
import * as shared from './shared';
const manager = new A11yManager();
function checkA11y(storyFn, context) {
const channel = addons.getChannel();
return manager.wrapStory(channel, storyFn, context);
}
export { checkA11y, shared };