Repository URL to install this package:
|
Version:
2.7.11 ▾
|
@skava/ui
/
dist
/
components
/
abstractions
/
BundleProduct
/
CheckoutCartBundle
/
CheckoutCartBundle.d.ts
|
|---|
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;