mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
36 lines
940 B
Plaintext
36 lines
940 B
Plaintext
```js
|
|
// MyComponent.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { MyComponent } from './MyComponent';
|
|
|
|
import someData from './data.json';
|
|
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/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 } };
|
|
|
|
|
|
const Template = (args) => <MyComponent {...args} />;
|
|
|
|
export const SimpleStory = Template.bind({});
|
|
SimpleStory.args = {
|
|
data: simpleData,
|
|
};
|
|
|
|
export const ComplexStory = Template.bind({});
|
|
ComplexStory.args = {
|
|
data: complexData,
|
|
};
|
|
``` |