mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
43 lines
881 B
Plaintext
43 lines
881 B
Plaintext
```md
|
|
<!-- Button.stories.mdx -->
|
|
|
|
import { Meta, Story } from '@storybook/addon-docs';
|
|
|
|
import { Button } from './button.component';
|
|
|
|
<!-- 👇 Creates specific argTypes -->
|
|
<Meta
|
|
title="Button"
|
|
component={Button}
|
|
argTypes={{
|
|
backgroundColor: {
|
|
control: 'color',
|
|
},
|
|
}}
|
|
/>
|
|
|
|
<!-- 👇 Some function to demonstrate the behavior -->
|
|
export const someFunction = (someValue) => {
|
|
return `i am a ${someValue}`;
|
|
};
|
|
|
|
<!-- 👇 Destructure the label from the args object and assigns the function result to a variable and pass it as a prop into the component -->
|
|
<Story
|
|
name="ExampleStory"
|
|
args={{
|
|
primary: true,
|
|
size: 'small',
|
|
label: 'button',
|
|
}}>
|
|
{(args) => {
|
|
const { label } = args;
|
|
const functionResult = someFunction(label);
|
|
return {
|
|
props: {
|
|
...args,
|
|
label: functionResult,
|
|
},
|
|
};
|
|
}}
|
|
</Story>
|
|
``` |