import React, { useState } from 'react'
import ArtworkCard from '../../gallery/ArtworkCard'
function FavSkeleton() {
return (
{isOwner ? 'Your Favourites' : 'Favourites'}
{items.length === 0 ? (
No favourites yet
Artworks added to favourites will appear here.
) : (
<>
{items.map((art, i) => (
))}
{loadingMore && Array.from({ length: 4 }).map((_, i) =>
)}
{nextCursor && (
)}
>
)}
)
}