Merge pull request #8562 from aej11a/patch-2

Added example of a decorator in Storybook config
This commit is contained in:
Michael Shilman 2019-10-25 08:40:22 +08:00 committed by GitHub
commit 2832775edf
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