import { Button } from "antd" import classnames from "classnames" import "./index.less" const FollowButton = (props) => { return (
{props.count} {props.self && " Followers"}
{!props.self && ( )}
) } export default FollowButton