mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:21:24 +08:00
48 lines
1.3 KiB
Plaintext
48 lines
1.3 KiB
Plaintext
```tsx
|
|
// YourComponent.stories.ts|tsx
|
|
|
|
import type { Meta, StoryObj } from '@storybook/react';
|
|
|
|
import { YourComponent } from './your-component';
|
|
|
|
const meta: Meta<typeof YourComponent> = {
|
|
/* 👇 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: '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'],
|
|
},
|
|
},
|
|
};
|
|
|
|
export default meta;
|
|
type Story = StoryObj<typeof YourComponent>;
|
|
|
|
//👇 Some function to demonstrate the behavior
|
|
const someFunction = (valuePropertyA, valuePropertyB) => {
|
|
// Makes some computations and returns something
|
|
};
|
|
|
|
export const ExampleStory: Story = {
|
|
render: (args) => {
|
|
const { propertyA, propertyB } = args;
|
|
//👇 Assigns the function result to a variable
|
|
const someFunctionResult = someFunction(propertyA, propertyB);
|
|
|
|
return <YourComponent {...args} someProperty={someFunctionResult} />;
|
|
},
|
|
args: {
|
|
propertyA: 'Item One',
|
|
propertyB: 'Another Item One',
|
|
},
|
|
};
|
|
```
|