platformList.stories.js 467 B

1234567891011121314
  1. import React from 'react';
  2. import {storiesOf} from '@storybook/react';
  3. import {withInfo} from '@storybook/addon-info';
  4. import PlatformList from 'app/components/platformList';
  5. storiesOf('UI|Platform List', module).add(
  6. 'Platform List',
  7. withInfo('Stacked list of platform and framework icons')(() => (
  8. <div style={{padding: 20, backgroundColor: '#ffffff'}}>
  9. <PlatformList platforms={['java', 'php', 'javascript', 'cocoa', 'ruby']} />
  10. </div>
  11. ))
  12. );