Repository URL to install this package:
|
Version:
2.1.2-perf.21 ▾
|
import React from 'react'
import { Empty } from 'atoms/Empty'
import { ProductListProps, ProductListState } from './typings'
import { PaymentActionTile } from '../Item/PaymentActionTile'
function defaultRenderText(props: ProductListProps) {
return <PaymentActionTile {...props} />
}
function defaultRenderIcon() {
return <Empty />
}
export { defaultRenderIcon, defaultRenderText }