Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
presets
/
ProductPieces
/
ProductQuantity
/
ProductQuantity.tsx
|
|---|
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