import Image from "next/image"; type Props = { name: string; picture: string; }; const Avatar = ({ name, picture }: Props) => { return (
{name}
{name}
); }; export default Avatar;