import Link from 'next/link'; export default function TestsTable({ products = [] }) { return (
{products.map((product) => ( ))}
Number Name Specimen
{product.id} {product.attributes.name} Urine
); }