1
0
mirror of https://github.com/storybookjs/storybook.git synced 2025-03-22 05:02:18 +08:00
2019-12-23 14:43:15 +08:00

6 lines
198 B
TypeScript

import { configure } from '@storybook/react';
import * as Comp1 from './stories/Component1.stories';
import * as Comp2 from './stories/Component2.stories';
configure(() => [Comp1, Comp2], module);