1
0
mirror of https://github.com/yldio/copilot.git synced 2024-11-16 00:00:06 +02:00
copilot/ui/src/components/topology/story.js

12 lines
220 B
JavaScript
Raw Normal View History

const React = require('react');
2017-02-07 20:26:38 +02:00
const StoryHelper = require('./story-helper');
const {
storiesOf
} = require('@kadira/storybook');
storiesOf('Topology', module)
.add('5 services', () => (
2017-02-07 20:26:38 +02:00
<StoryHelper />
));