mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 01:51:04 +08:00
33 lines
819 B
Plaintext
33 lines
819 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
import someData from './data.json';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/7.0/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'MyComponent',
|
|
component: MyComponent,
|
|
includeStories: ['SimpleStory', 'ComplexStory'], // 👈 Storybook loads these stories
|
|
excludeStories: /.*Data$/, // 👈 Storybook ignores anything that contains Data
|
|
};
|
|
|
|
export const simpleData = { foo: 1, bar: 'baz' };
|
|
export const complexData = { foo: 1, foobar: { bar: 'baz', baz: someData } };
|
|
|
|
export const SimpleStory = {
|
|
args: {
|
|
data: simpleData,
|
|
},
|
|
};
|
|
|
|
export const ComplexStory = {
|
|
args: {
|
|
data: complexData,
|
|
},
|
|
};
|
|
``` |