mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 10:01:05 +08:00
14 lines
488 B
TypeScript
14 lines
488 B
TypeScript
import { configure, addParameters, addDecorator } from '@storybook/react';
|
|
import { withA11y } from '@storybook/addon-a11y';
|
|
|
|
addDecorator(withA11y);
|
|
addParameters({
|
|
options: {
|
|
brandTitle: 'CRA TypeScript Kitchen Sink',
|
|
brandUrl: 'https://github.com/storybookjs/storybook/tree/master/examples/cra-ts-kitchen-sink',
|
|
},
|
|
});
|
|
|
|
// automatically import all files ending in *.stories.(tsx|jsx)
|
|
configure(require.context('../src/stories', true, /\.stories\.(mdx|[tj]sx?)$/), module);
|