Added example of a decorator in Storybook config

There was previously text on this page that recommends adding decorators to the Storybook config, but doesn't show how to do that. I was confused about this at first, so when I figured it out I decided to add it to the docs.
This commit is contained in:
aej11a 2019-10-24 17:06:04 -04:00 committed by GitHub
parent 506912cb50
commit d46e34800c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -94,7 +94,18 @@ storiesOf('Button', module)
));
```
> You can call `addDecorator()` inside the story definition file as shown above. But adding it to the Storybook config file is a much better option.
You can call `addDecorator()` inside the story definition file as shown above, but **adding it to the Storybook config file is a much better option**. That would look like this in `config.js`:
```js
import React from 'react'
import { addDecorator } from '@storybook/react';
const styles = {
textAlign: 'center',
};
const CenterDecorator = storyFn => <div style={styles}>{storyFn()}</div>;
addDecorator(CenterDecorator);
```
## 2. Native Addons