mirror of
https://github.com/storybookjs/storybook.git
synced 2025-04-04 15:11:10 +08:00
7 lines
249 B
JavaScript
7 lines
249 B
JavaScript
import { configure, addDecorator } from '@storybook/react';
|
|
|
|
addDecorator((story) => (<div style={{padding: 20}}>{story()}</div>));
|
|
|
|
const req = require.context('../src/', true, /\.story.tsx$/);
|
|
configure(() => { req.keys().forEach(req) }, module);
|