Files
dmenu-admin/src/pages/paymentMethods/List.tsx
T
2025-11-23 09:59:37 +03:30

11 lines
261 B
TypeScript
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
import { type FC } from 'react'
const PaymentMethodsList: FC = () => {
return (
<div className='mt-5'>
<h1 className='text-lg font-light'>لیست روش های پرداخت</h1>
</div>
)
}
export default PaymentMethodsList