mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 02:31:05 +08:00
28 lines
650 B
Plaintext
28 lines
650 B
Plaintext
```js
|
|
// Button.stories.js | Button.stories.jsx | Button.stories.ts | Button.stories.tsx
|
|
|
|
import { Button } from './Button';
|
|
|
|
import CustomMDXDocumentation from './Custom-MDX-Documentation.mdx'
|
|
|
|
export default {
|
|
title: 'Example/Button',
|
|
component: Button,
|
|
argTypes: {
|
|
backgroundColor: { control: 'color' },
|
|
},
|
|
parameters: {
|
|
docs: {
|
|
page: CustomMDXDocumentation,
|
|
}
|
|
},
|
|
};
|
|
|
|
export const Primary = () => <Button backgroundColor="primary" />;
|
|
|
|
export const Secondary = () => <Button backgroundColor="secondary" />;
|
|
|
|
export const Large = () => <Button size="large" />;
|
|
|
|
export const Small = () => <Button size="small" />;
|
|
``` |