import clsx from 'clsx' import { useFollows } from 'web/hooks/use-follows' import { useUser, useUserById } from 'web/hooks/use-user' import { follow, unfollow } from 'web/lib/firebase/users' import { Avatar } from './avatar' import { FollowButton } from './follow-button' import { Col } from './layout/col' import { Row } from './layout/row' import { UserLink } from './user-page' export function FollowList(props: { userIds: string[] }) { const { userIds } = props const currentUser = useUser() const followedUserIds = useFollows(currentUser?.id) const onFollow = (userId: string) => { if (!currentUser) return follow(currentUser.id, userId) } const onUnfollow = (userId: string) => { if (!currentUser) return unfollow(currentUser.id, userId) } return (