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 { ProductList as ProductListPlaceholder } from 'abstractions/OrderHistory/ProductList'
import { ProductListProps } from './typings'
import { defaultRenderProductItem, defaultRenderStoreName } from './renderProps'

class ProductList extends React.PureComponent<ProductListProps> {
  static defaultProps = {
    className: '',
    renderProductItem: defaultRenderProductItem,
    renderStoreName: defaultRenderStoreName,
  }
  render() {
    return <ProductListPlaceholder {...this.props} />
  }
}

export { ProductList }
export default ProductList