为个人故事命名
Give a title to an individual story
如何为故事书中的单个故事赋予 title
价值?似乎应该是 storyname.title = 'value'
但这不起作用。
例如:
export default {
title: "Root Component Title",
component: SomeComponent,
};
export const SomeComponentVariant = () => <SetUpTwoFAContainer />;
// This title does not work
SomeComponentVariant.title = "Set Up Parent Container";
看起来答案是 SomeComponentVariant.storyName
您可以使用 SomeComponentVariant.storyName = '...'
覆盖故事名称以匹配组件名称。
StorybookJS 文档source
如何为故事书中的单个故事赋予 title
价值?似乎应该是 storyname.title = 'value'
但这不起作用。
例如:
export default {
title: "Root Component Title",
component: SomeComponent,
};
export const SomeComponentVariant = () => <SetUpTwoFAContainer />;
// This title does not work
SomeComponentVariant.title = "Set Up Parent Container";
看起来答案是 SomeComponentVariant.storyName
您可以使用 SomeComponentVariant.storyName = '...'
覆盖故事名称以匹配组件名称。
StorybookJS 文档source