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