'use client'; import { Product } from '@ftb/shared'; interface ProductWithCount extends Product { _count?: { requirements: number; projects: number }; } interface Props { product: ProductWithCount; onClick: (id: string) => void; } export function ProductCard({ product, onClick }: Props) { return (
{product.description}
)}