import Image from "next/image"; import AuthorType from "../types/authorType"; type Props = { author: AuthorType; }; export default function Avatar({ author }: Props) { const name: string = author ? author.firstName && author.lastName ? `${author.firstName} ${author.lastName}` : author.name : null; return (
{name}
{name}
); }