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 / atoms / Row.story.tsx
Size: Mime:
import React from 'react'
import { storiesOf } from '@storybook/react'
import { styled } from 'view-container'
import Row from 'atoms/Row'

const Cell = styled.div`
  flex: 1;
`

/**
 * @todo need to import cell component
 */
storiesOf('atoms/Grid/Row', module).add('default', () => (
  <Row>
    <Cell>Row: first column</Cell>
    <Cell>Row: second column</Cell>
  </Row>
))