mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-05 01:31:06 +08:00
Merge pull request #8562 from aej11a/patch-2
Added example of a decorator in Storybook config
This commit is contained in:
commit
2832775edf
@ -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
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user