mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 00:41:05 +08:00
24 lines
551 B
TypeScript
24 lines
551 B
TypeScript
import { global as globalThis } from '@storybook/global';
|
|
import type { PartialStoryFn, StoryContext } from '@storybook/types';
|
|
|
|
export default {
|
|
component: globalThis.Components.Pre,
|
|
decorators: [
|
|
(storyFn: PartialStoryFn, context: StoryContext) => storyFn({ args: { object: context.args } }),
|
|
],
|
|
};
|
|
|
|
export const DisableTable = {
|
|
args: { a: 'a', b: 'b' },
|
|
argTypes: {
|
|
b: { table: { disable: true } },
|
|
},
|
|
};
|
|
|
|
export const DisableControl = {
|
|
args: { a: 'a', b: 'b' },
|
|
argTypes: {
|
|
b: { control: { disable: true } },
|
|
},
|
|
};
|