import { Avatar, Comment } from 'antd'; import React from 'react'; import { Follower } from '../interfaces/follower'; interface Props { follower: Follower; } export default function SingleFollower(props: Props) { const { follower } = props; return ( } content={follower.name} /> ); }