export const customerGridApp = { name: 'customer-grid', description: 'Customer directory with search and filtering', async render(context: any, data: any) { const { customers = [] } = data; return `
| Customer | Orders | Total Spent | Member Since | Actions | |
|---|---|---|---|---|---|
|
${customer.firstName || ''} ${customer.lastName || ''}
|
${customer.email} |
${customer.orderCount || 0} | ${customer.totalSpent ? `${customer.totalSpent.currency} ${customer.totalSpent.value}` : '$0.00'} | ${new Date(customer.createdOn).toLocaleDateString()} |