export function PaymentModalContent({ customers, suppliers, selectedCustomer, onCustomerChange }) { return ( <>
{selectedCustomer && (
{selectedCustomer.type === 'credit' ? "You'll Get" : "You'll Give"} ₹{selectedCustomer.balance.toLocaleString()}
)}
); } export function AddCustomerModalContent() { return ( <>
); } export function AddEntryModalContent({ selectedCustomer }) { return ( <> {selectedCustomer && (
{selectedCustomer.type === 'credit' ? "You'll Get" : "You'll Give"} ₹{selectedCustomer.balance.toLocaleString()}
)}
); } export function ReminderModalContent({ selectedCustomer }) { return ( <>
); }