mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 07:01:21 +08:00
22 lines
477 B
Plaintext
22 lines
477 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import Button from './Button';
|
|
|
|
export default { title: 'Components/Button' };
|
|
|
|
// We create a “template” of how args map to rendering
|
|
const Template = (args, { argTypes }) => ({
|
|
components: { Button },
|
|
props: Object.keys(argTypes),
|
|
template: '<Button :primary="primary" :label="label" />',
|
|
});
|
|
|
|
// Each story then reuses that template
|
|
export const Primary = Template.bind({});
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Primary',
|
|
};
|
|
```
|