mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-03 05:04:51 +08:00
commit
c68a113106
@ -133,14 +133,14 @@ for use in SB Docs.
|
||||
For example:
|
||||
|
||||
```js
|
||||
input { Button } from './Button';
|
||||
import { Button } from './Button';
|
||||
storiesOf('Button', module).add('story', () => <Button label="The Button" />);
|
||||
```
|
||||
|
||||
Becomes:
|
||||
|
||||
```js
|
||||
input { Button } from './Button';
|
||||
import { Button } from './Button';
|
||||
storiesOf('Button', module)
|
||||
.addParameters({ component: Button })
|
||||
.add('story', () => <Button label="The Button" />);
|
||||
|
Loading…
x
Reference in New Issue
Block a user