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 { PaymentInformationCard as PaymentInformationCardPlaceholder } from
  'abstractions/Subscription/PaymentInformationCard'
import { PaymentInformationCardPresetProps } from './typings'
import {
  defaultRenderHeader,
  defaultRenderItem,
  defaultRenderForm,
} from './renderProps'

class PaymentInformationCard extends React.PureComponent<PaymentInformationCardPresetProps> {
  static defaultProps = {
    className: '',
    renderHeader: defaultRenderHeader,
    renderItem: defaultRenderItem,
    renderForm: defaultRenderForm,
  }
  render() {
    return <PaymentInformationCardPlaceholder {...this.props} />
  }
}

export { PaymentInformationCard }
export default PaymentInformationCard