mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-08 09:31:47 +08:00
12 lines
137 B
Plaintext
12 lines
137 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
export default {
|
|
component: 'demo-button',
|
|
};
|
|
|
|
export const Primary = {
|
|
name: 'I am the primary',
|
|
};
|
|
```
|