clippedBox.stories.js 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. import React from 'react';
  2. import {storiesOf} from '@storybook/react';
  3. import {withInfo} from '@storybook/addon-info';
  4. // import {action} from '@storybook/addon-actions';
  5. import ClippedBox from 'app/components/clippedBox';
  6. storiesOf('UI|ClippedBox', module).add(
  7. 'default',
  8. withInfo('Component that clips content and allows expansion of container')(() => (
  9. <div>
  10. <div>
  11. <ClippedBox
  12. defaultClipped
  13. title="Clipped Box Title"
  14. clipHeight={60}
  15. btnText="Expand"
  16. >
  17. Tilde taiyaki lumbersexual, franzen gochujang forage mixtape meditation
  18. mumblecore af food truck etsy butcher. Post-ironic taiyaki affogato, artisan
  19. biodiesel kickstarter direct trade try-hard tacos subway tile swag vice trust
  20. fund shaman whatever. Everyday carry cliche lomo, bicycle rights vaporware tbh
  21. meditation occupy bespoke. Meh green juice enamel pin thundercats, aesthetic
  22. intelligentsia hoodie fanny pack venmo. Kale chips tacos activated charcoal
  23. pinterest tousled hoodie 8-bit occupy distillery. Tote bag godard thundercats
  24. small batch banjo, DIY waistcoat. Glossier poutine VHS put a bird on it listicle
  25. deep v letterpress. Tbh banjo paleo cred hoodie. Live-edge synth twee, subway
  26. tile coloring book woke swag XOXO cornhole glossier neutra hell of lo-fi
  27. brooklyn actually. Retro beard jianbing, shoreditch kitsch banh mi flexitarian
  28. mustache cold-pressed. Sriracha af brooklyn, poutine snackwave taxidermy ugh
  29. locavore mlkshk shaman before they sold out +1. Microdosing copper mug edison
  30. bulb, synth tote bag man braid heirloom. Cray tattooed portland, echo park
  31. sustainable gluten-free chartreuse hexagon. Pitchfork fixie keffiyeh mustache +1
  32. vinyl, cliche pok pok vegan hashtag live-edge williamsburg wayfarers butcher
  33. beard.
  34. </ClippedBox>
  35. </div>
  36. </div>
  37. ))
  38. );