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 { CheckoutCartBundleProps } from './typings';
import { defaultRenderHeader, defaultRenderList, defaultRenderCheckoutItem } from './renderProps';
declare class CheckoutCartBundle extends React.PureComponent<CheckoutCartBundleProps> {
    static defaultProps: {
        className: string;
        renderHeader: typeof defaultRenderHeader;
        renderList: typeof defaultRenderList;
        renderItem: typeof defaultRenderCheckoutItem;
    };
    render(): JSX.Element;
}
export { CheckoutCartBundle };
export default CheckoutCartBundle;