import React from 'react' import ActivityCard from './ActivityCard' export default function ActivityFeed({ activities, loading, loadingMore, error, sentinelRef }) { if (loading) { return (
Loading activity...
) } if (error) { return (
{error}
) } if (!activities.length) { return (

No activity yet

Upload artwork, join a conversation, follow creators, or post in the forum to start building this profile timeline.

Upload artwork Comment on artwork Follow creators
) } return (
{activities.map((activity) => ( ))} ) }