Repository URL to install this package:
|
Version:
0.14.1 ▾
|
ui-component-library
/
src
/
components
/
presets
/
Subscription
/
PaymentInformationCard
/
PaymentInformationCard.tsx
|
|---|
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