import { Avatar, Card } from "flowbite-react"; import Link from "next/link"; export const UserSection = (props: { sectionTitle?: string; content: any }) => { return (
{props.sectionTitle && (

{props.sectionTitle}

)}
{props.content.map((user) => { return (
{user.login}
); })} {props.content.length == 1 &&
}
); };