Show all clients in clients page
All checks were successful
Build and Deploy / build-and-deploy (push) Successful in 56s

This commit is contained in:
Cauê Faleiros
2026-06-16 16:24:10 -03:00
parent 37067751c7
commit ed1f129b07
4 changed files with 70 additions and 33 deletions

View File

@@ -63,6 +63,15 @@ export interface DashboardAnalytics {
}>;
}
export interface ClientAnalyticsItem {
name: string;
phone: string;
quantityPurchased: number;
totalSpent: number;
orderCount: number;
lastPurchaseDate: string;
}
export interface RfmClient {
name: string;
phone: string;