import React from 'react' /** * TabCollections * Collections feature placeholder. */ export default function TabCollections({ collections }) { if (collections?.length > 0) { return (
{collections.map((col) => (
{col.cover_image ? (
{col.title}
) : (
)}

{col.title}

{col.items_count ?? 0} artworks

))}
) } return (

Collections Coming Soon

Group artworks into curated collections. This feature is currently in development.

) }