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 { CheckoutCartBundle as CheckoutCartBundlePlaceholder } from 'abstractions/BundleProduct'
import { defaultRenderHeader, defaultRenderItem } from './renderProps'
import { CheckoutCartBundleProps } from './typings'

class CheckoutCartBundle extends React.PureComponent<CheckoutCartBundleProps> {
  static defaultProps = {
    className: '',
    headerLabel: 'view items',
    renderHeader: defaultRenderHeader,
    renderItem: defaultRenderItem,
  }
  render() {
    const { className, ...remainingProps } = this.props
    return <CheckoutCartBundlePlaceholder {...remainingProps} />
  }
}

export { CheckoutCartBundle }
export default CheckoutCartBundle