mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-07 00:21:24 +08:00
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:
parent
506912cb50
commit
d46e34800c
@ -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
|
## 2. Native Addons
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user