mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 15:31:16 +08:00
28 lines
736 B
Plaintext
28 lines
736 B
Plaintext
```js
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/react/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
};
|
|
|
|
//👇 We create a “template” of how args map to rendering
|
|
const Template = (args) => {
|
|
const btn = document.createElement('button');
|
|
btn.innerText = args.label;
|
|
|
|
const mode = args.primary ? 'storybook-button--primary' : 'storybook-button--secondary';
|
|
btn.className = ['storybook-button', 'storybook-button--medium', mode].join(' ');
|
|
|
|
return btn;
|
|
};
|
|
|
|
//👇 Each story then reuses that template
|
|
export const Primary = Template.bind({});
|
|
Primary.args = {
|
|
primary: true,
|
|
label: 'Button',
|
|
};
|
|
```
|