Files
digifi-bko/src/app/modules/process/user-ready/table/columns/UserLastLoginCell.tsx
T
victorAnumudu 3a35a34266 initial commit
2024-05-15 20:22:33 +01:00

12 lines
226 B
TypeScript

import {FC} from 'react'
type Props = {
payment_month?: string
}
const PaymentMonthCell: FC<Props> = ({payment_month}) => (
<div className='badge badge-light fw-bolder'>{payment_month}</div>
)
export {PaymentMonthCell}