mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 22:21:27 +08:00
15 lines
290 B
JavaScript
15 lines
290 B
JavaScript
import React from 'react';
|
|
|
|
import WrapStory from './components/WrapStory';
|
|
|
|
// Run all a11y checks inside
|
|
class A11yManager {
|
|
wrapStory(channel, storyFn, context) {
|
|
const props = { context, storyFn, channel };
|
|
|
|
return <WrapStory {...props} />;
|
|
}
|
|
}
|
|
|
|
export default A11yManager;
|