mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 05:41:07 +08:00
17 lines
272 B
Plaintext
17 lines
272 B
Plaintext
```js
|
|
// Button.stories.js
|
|
|
|
import React from 'react';
|
|
import Button from './Button';
|
|
|
|
export default {
|
|
title: 'Button',
|
|
parameters: {
|
|
myAddon: {
|
|
data: 'this data is passed to the addon',
|
|
},
|
|
},
|
|
};
|
|
|
|
export const Basic = () => <Button>hello</Button>;
|
|
``` |