import { useSelector } from "react-redux"; import { fallbackImage, skeleton } from "../helpers/utils"; import LazyImage from "./LazyImage"; const imageHeight = 300; const AvatarCard = () => { const profile = useSelector(state => state.profile); const loading = useSelector(state => state.loading); return (