mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-06 07:21:16 +08:00
16 lines
197 B
Plaintext
16 lines
197 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export default {
|
|
title: 'Button',
|
|
component: 'custom-button',
|
|
argTypes: {
|
|
onClick: { action: 'onClick' },
|
|
},
|
|
};
|
|
|
|
export const Text = {
|
|
args: {...},
|
|
};
|
|
```
|