Update storiesOf.md

This commit is contained in:
Juan Cortés Ross 2021-08-05 14:41:06 +02:00 committed by GitHub
parent 8c326620fe
commit efcda0a3cd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -63,7 +63,7 @@ We can control how the component's stories will render with parameters and decor
```js
storiesOf('Button', module)
.addParameters({backgrounds: {values: [{name: "red" value: "#f00"}]}})
.addParameters({backgrounds: {values: [{name: "red", value: "#f00"}]}})
.addDecorator((Story) => <div style={{ margin: '3em' }}><Story/></div>)
.addDecorator((Story) => <div style={{ height: '600px' }}><Story/></div>)
.add('with text', () => <Button onClick={action('clicked')}>Hello Button</Button>)