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    
Size: Mime:
import React from 'react'
import { EMPTY_ARRAY } from 'exotic'
import { ProductItemList as ProductItemListPlaceholder } from 'abstractions/Order/ProductItemList'
import { ProductItemListProps } from './typings'
import { defaultRenderProductItem } from './renderProps'

class ProductItemList extends React.Component<ProductItemListProps> {
  static defaultProps = {
    className: '',

    /**
     * render props
     */
    renderProductItem: defaultRenderProductItem,
  }
  render() {
    return <ProductItemListPlaceholder {...this.props} />
  }
}

export { ProductItemList }
export default ProductItemList