mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 08:51:08 +08:00
13 lines
295 B
JavaScript
13 lines
295 B
JavaScript
/** @jsx h */
|
|
import { configure, addParameters, addDecorator } from '@storybook/preact';
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
|
|
addDecorator(withA11y);
|
|
addParameters({
|
|
options: {
|
|
showRoots: true,
|
|
},
|
|
});
|
|
|
|
configure(require.context('../src', true, /\.stories\.js$/), module);
|