storybook/docs/snippets/react/button-story-default-docs-code.mdx.mdx
2021-10-12 21:52:15 +01:00

40 lines
945 B
Plaintext

```md
<!-- Button.stories.mdx -->
import { Meta, Story } from '@storybook/addon-docs';
import { Button } from './Button';
<!-- 👇 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}`;
};
<!-- Render functions are a framework specific feature to allow you control on how the component renders -->
<!-- 👇 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',
}}
render={(args) => {
const { label } = args;
const functionResult = someFunction(label);
return <Button {...args} label={functionResult} />;
}}/>
```