Repository URL to install this package:
|
Version:
2.1.8 ▾
|
import React from 'react';
import { defaultRenderStoreName, defaultRenderProductItem } from './renderProps';
import { ProductListProps } from './typings';
declare class ProductList extends React.PureComponent<ProductListProps> {
static defaultProps: {
className: string;
renderStoreName: typeof defaultRenderStoreName;
renderProductItem: typeof defaultRenderProductItem;
};
render(): JSX.Element;
}
export { ProductList };
export default ProductList;