import React from "react" import classnames from "classnames" import { DateTime } from "luxon" import { Skeleton } from "antd" import UserBadges from "@components/UserBadges" import { Icons } from "@components/Icons" import "./index.less" function getJoinLabel(jsDate) { const date = DateTime.fromJSDate(new Date(jsDate)) const month = String(date.toLocaleString({ month: "long" })).toTitleCase() const year = String(date.year) return `${month} ${year}` } const DroppableField = (props) => { const [collapsed, setCollapsed] = React.useState(true) return
{props.state.user._id}
{props.state.followersCount}
{props.state.user?.badges.length}