import Link from "next/link"; import { User } from "@/lib/api"; import { UserAvatar } from "./user-avatar"; import { Card, CardContent } from "./ui/card"; interface UserListCardProps { users: User[]; } export function UserListCard({ users }: UserListCardProps) { if (users.length === 0) { return (
No users to display.
); } return ({user.displayName || user.username}
@{user.username}