Repository URL to install this package:
|
Version:
2.7.3 ▾
|
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