mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 06:41:11 +08:00
40 lines
1.0 KiB
Plaintext
40 lines
1.0 KiB
Plaintext
```ts
|
|
// YourComponent.stories.ts
|
|
|
|
import { YourComponent } from './your-component.component';
|
|
|
|
export default {
|
|
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: String, valuePropertyB: String) => {
|
|
// Makes some computations and returns something
|
|
};
|
|
|
|
export const ExampleStory = {
|
|
args: { propertyA: 'Something', propertyB: 'Something else' },
|
|
render: (args) => {
|
|
const { propertyA, propertyB } = args;
|
|
//👇 Assigns the function result to a variable
|
|
const someFunctionResult = someFunction(propertyA, propertyB);
|
|
return {
|
|
props: {
|
|
...args,
|
|
someProperty: someFunctionResult,
|
|
},
|
|
};
|
|
},
|
|
};
|
|
```
|