mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
44 lines
1.2 KiB
Plaintext
44 lines
1.2 KiB
Plaintext
```js
|
|
// YourComponent.stories.js|jsx
|
|
|
|
import React from 'react';
|
|
|
|
import { YourComponent } from './your-component';
|
|
|
|
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: 'YourComponent',
|
|
component: YourComponent,
|
|
//👇 Creates specific argTypes with options
|
|
argTypes: {
|
|
propertyA: {
|
|
options: ['Item One', 'Item Two', 'Item Three'],
|
|
control: { type: 'select' }, // Automatically inferred when 'options' is defined
|
|
},
|
|
propertyB: {
|
|
options: ['Another Item One', 'Another Item Two', 'Another Item Three'],
|
|
},
|
|
},
|
|
};
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
const someFunction = (valuePropertyA, valuePropertyB) => {
|
|
// Makes some computations and returns something
|
|
};
|
|
|
|
const Template = ({ propertyA, propertyB, ...rest }) => {
|
|
//👇 Assigns the function result to a variable
|
|
const someFunctionResult = someFunction(propertyA, propertyB);
|
|
|
|
return <YourComponent someProperty={someFunctionResult} {...rest} />;
|
|
};
|
|
|
|
export const ExampleStory = Template.bind({});
|
|
ExampleStory.args= {
|
|
propertyA: 'Item One',
|
|
propertyB: 'Another Item One',
|
|
};
|
|
``` |