import React from "react" import * as antd from "antd" import { Icons } from "components/Icons" import "./index.less" export default (props) => { if (props.followers.length === 0) { return } >

It's seems this user has no followers, yet.

Maybe you can help them out?

} return
{props.followers.map((follower) => { return

{follower.fullName ?? follower.username}

@{follower.username}
})}
}