mirror of
https://github.com/vercel/commerce.git
synced 2025-06-18 21:21:21 +00:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
const DiseasesAndConditions = ({ taxons = [] }) => {
|
|
return (
|
|
<ul>
|
|
{taxons.map((taxon) => (
|
|
<li key={taxon.id}>
|
|
<Link href="/">{taxon.attributes.name}</Link>
|
|
</li>
|
|
))}
|
|
</ul>
|
|
);
|
|
};
|
|
|
|
export default DiseasesAndConditions;
|