specifying where to get withInfo (#7013)

specifying where to get `withInfo`
This commit is contained in:
Michael Shilman 2019-06-09 00:19:37 -07:00 committed by Michael Shilman
parent d5d872754e
commit fed3db6070

View File

@ -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