import React from 'react' const SubscriptionsBadge:React.FC<{ followingCount: number | null, followersCount: number | null }> = ( { followingCount, followersCount } ) => { return (
Following {followingCount !== null ? followingCount : '?'}
Followers {followersCount !== null ? followersCount : '?'}
) } export default SubscriptionsBadge