mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 13:11:20 +08:00
12 lines
284 B
JavaScript
12 lines
284 B
JavaScript
import React from 'react';
|
|
import { configure, setAddon, addDecorator } from '@storybook/react';
|
|
import InfoAddon from '../src/';
|
|
|
|
addDecorator(story => <div style={{ padding: 20 }}>{story()}</div>);
|
|
|
|
setAddon(InfoAddon);
|
|
|
|
configure(() => {
|
|
require('../example/story');
|
|
}, module);
|