import React from 'react' import ReactionBar from '../comments/ReactionBar' export default function ActivityReactions({ activity, isLoggedIn = false }) { const commentId = activity?.comment?.id || null const commentUrl = activity?.comment?.url || activity?.artwork?.url || '#' const artworkUrl = activity?.artwork?.url || null return (
{commentId ? ( ) : null} Reply {artworkUrl ? ( View artwork ) : null}
) }