mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 16:11:33 +08:00
23 lines
478 B
Plaintext
23 lines
478 B
Plaintext
```js
|
|
export default {
|
|
/* 👇 The title prop is optional.
|
|
* See https://storybook.js.org/docs/html/configure/overview#configure-story-loading
|
|
* to learn how to generate automatic titles
|
|
*/
|
|
title: 'Button',
|
|
};
|
|
|
|
export const Primary = () => {
|
|
const btn = document.createElement('button');
|
|
btn.innerText = 'Button';
|
|
|
|
btn.className = [
|
|
'storybook-button',
|
|
'storybook-button--medium',
|
|
'storybook-button--primary',
|
|
].join(' ');
|
|
|
|
return btn;
|
|
};
|
|
```
|