native_convex_CRM/app/components/customerItemCard/customerItemCard.props.ts

9 lines
160 B
TypeScript

import { CustomerItem } from '@interfaces';
export interface CustomerItemCardProps {
item: CustomerItem;
onPress?: () => void;
onDelete?: () => void;
}