import React from 'react' import { SimpleListItemSkeleton } from '@app/components/placeholders' interface EmptyPayments { subTitle: string } export const EmptyPayments = ({ subTitle }: EmptyPayments) => { return (

{subTitle || 'Payments'}

) }