mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 04:21:07 +08:00
25 lines
491 B
Plaintext
25 lines
491 B
Plaintext
```ts
|
|
// Button.stories.ts | Button.stories.tsx
|
|
|
|
import React from 'react';
|
|
|
|
import { Story, Meta } from '@storybook/react';
|
|
|
|
import { Button, ButtonProps } from './Button';
|
|
|
|
export default {
|
|
component: Button,
|
|
title: 'Components/Button',
|
|
} as Meta;
|
|
|
|
//👇 We create a “template” of how args map to rendering
|
|
const Template: Story<ButtonProps> = (args) => <Button {...args} />;
|
|
|
|
export const Primary = Template.bind({});
|
|
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
```
|