mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 04:11:06 +08:00
30 lines
705 B
TypeScript
30 lines
705 B
TypeScript
import type { PartialStoryFn, StoryContext } from '@storybook/types';
|
|
|
|
export const parameters = {
|
|
projectParameter: 'projectParameter',
|
|
storyObject: {
|
|
a: 'project',
|
|
b: 'project',
|
|
c: 'project',
|
|
},
|
|
};
|
|
|
|
export const loaders = [async () => ({ projectValue: 2 })];
|
|
|
|
export const decorators = [
|
|
(storyFn: PartialStoryFn, context: StoryContext) => {
|
|
if (context.parameters['useProjectDecorator'])
|
|
return storyFn({ args: { ...context.args, text: `project ${context.args.text}` } });
|
|
return storyFn();
|
|
},
|
|
];
|
|
|
|
export const globals = {
|
|
foo: 'fooValue',
|
|
};
|
|
|
|
export const globalTypes = {
|
|
foo: { defaultValue: 'fooDefaultValue' },
|
|
bar: { defaultValue: 'barDefaultValue' },
|
|
};
|