Fix typo
This commit is contained in:
Michael Shilman 2019-12-05 08:56:35 +08:00 committed by GitHub
commit c68a113106
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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" />);