Repository URL to install this package:
|
Version:
2.1.6 ▾
|
import React from 'react'
import { PaymentActionTile } from '../Item/PaymentActionTile'
import { PaymentItemProps } from './typings'
function defaultRenderText(props: PaymentItemProps) {
const { label, onClick, ...remainingProps } = props
const handlePaymentChange = onClick
return (
<PaymentActionTile
paymentCardDetails={label}
onPaymentChange={handlePaymentChange}
{...remainingProps}
/>
)
}
export { defaultRenderText }