mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:31:05 +08:00
16 lines
417 B
TypeScript
16 lines
417 B
TypeScript
import { extractComponentDescription, enhanceArgTypes } from '@storybook/docs-tools';
|
|
import { extractArgTypes } from './extractArgTypes';
|
|
import { sourceDecorator } from './sourceDecorator';
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
inlineStories: true,
|
|
extractArgTypes,
|
|
extractComponentDescription,
|
|
},
|
|
};
|
|
|
|
export const decorators = [sourceDecorator];
|
|
|
|
export const argTypesEnhancers = [enhanceArgTypes];
|