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 { NO_OP } from 'exotic';
import { ProductItemProps } from './typings';
import { defaultRenderCheckoutButton, defaultRenderCheckoutTotalPrice, defaultRenderCheckoutPrice, defaultRenderCheckoutQuantity, defaultRenderCheckoutProduct } from './renderProps';
declare class ProductItem extends React.PureComponent<ProductItemProps> {
    static defaultProps: {
        className: string;
        onQuantityInputChange: typeof NO_OP;
        onProductClick: typeof NO_OP;
        renderButton: typeof defaultRenderCheckoutButton;
        renderTotalPrice: typeof defaultRenderCheckoutTotalPrice;
        renderPrice: typeof defaultRenderCheckoutPrice;
        renderQuantity: typeof defaultRenderCheckoutQuantity;
        renderProduct: typeof defaultRenderCheckoutProduct;
    };
    render(): JSX.Element;
}
export { ProductItem };
export default ProductItem;