changed `input` to `import`
This commit is contained in:
James 2019-12-04 15:50:08 -07:00 committed by GitHub
parent 6b18e28a75
commit db768a7b97
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" />);