10 lines
200 B
TypeScript
10 lines
200 B
TypeScript
export interface OrderHistoryCardProps {
|
|
providerName: string;
|
|
providerImage: string;
|
|
orderDate: string;
|
|
status: string;
|
|
total: number;
|
|
onReorder?: () => void;
|
|
onDetails?: () => void;
|
|
}
|