import type { GroceryItemType } from "../types"; interface Props { item: GroceryItemType; onClick: (id: number) => void; } export default function GroceryItem({ item, onClick }: Props) { return (