storybook/docs/snippets/angular/button-story-default-docs-code.mdx.mdx
2021-11-04 18:03:37 +00:00

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>
```