mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
20 lines
504 B
TypeScript
20 lines
504 B
TypeScript
import { extractArgTypes, extractComponentDescription } from './custom-elements';
|
|
import { sourceDecorator } from './sourceDecorator';
|
|
import { prepareForInline } from './prepareForInline';
|
|
import { SourceType } from '../../shared';
|
|
|
|
export const decorators = [sourceDecorator];
|
|
|
|
export const parameters = {
|
|
docs: {
|
|
extractArgTypes,
|
|
extractComponentDescription,
|
|
inlineStories: true,
|
|
prepareForInline,
|
|
source: {
|
|
type: SourceType.DYNAMIC,
|
|
language: 'html',
|
|
},
|
|
},
|
|
};
|