Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
ui-component-library / stories / molecules / Figure.story.tsx
Size: Mime:
import React from 'react'
import { storiesOf } from '@storybook/react'
import Figure from 'molecules/Figure'
import { styled } from 'view-container'

storiesOf('molecules/Figure', module)
  .add('Default', () => <Figure caption="banner" />)
  .add('Auto Align', () => (
    <Figure width="400px" height="300px" doAutoAlign caption="Banner with Auto Align" />
  ))