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    
@skava/ui / src / components / presets / ProductPieces / ProductQuantity / ProductQuantity.tsx
Size: Mime:
import React from 'react'
import { StyledSpecificationList } from './styled'
import { ProductQuantityProps } from './typings'
import { labelValueList } from './fixture'

class ProductQuantity extends React.PureComponent<ProductQuantityProps> {
  render() {
    return <StyledSpecificationList list={labelValueList} isColon={true} />
  }
}

export { ProductQuantity }
export default ProductQuantity