mirror of
https://github.com/Kong/insomnia
synced 2024-11-08 06:39:48 +00:00
42e198bf75
* Gruvbox theme * Added Storybook for all components that don't fail in browser
11 lines
239 B
JavaScript
11 lines
239 B
JavaScript
import { configure, addDecorator } from '@storybook/react';
|
|
import { withInfo } from '@storybook/addon-info';
|
|
|
|
addDecorator(
|
|
withInfo({
|
|
inline: true,
|
|
}),
|
|
);
|
|
|
|
configure(require.context('../app/ui', true, /\.stories\.js$/), module);
|