mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 12:31:06 +08:00
specifying where to get withInfo
(#7013)
specifying where to get `withInfo`
This commit is contained in:
parent
d5d872754e
commit
fed3db6070
@ -23,7 +23,11 @@ It is possible to add `info` by default to all or a subsection of stories by usi
|
||||
It is important to declare this decorator as **the first decorator**, otherwise it won't work well.
|
||||
|
||||
```js
|
||||
addDecorator(withInfo); // Globally in your .storybook/config.js.
|
||||
// Globally in your .storybook/config.js.
|
||||
import { addDecorator } from '@storybook/react';
|
||||
import { withInfo } from '@storybook/addon-info';
|
||||
|
||||
addDecorator(withInfo);
|
||||
```
|
||||
|
||||
or
|
||||
|
Loading…
x
Reference in New Issue
Block a user