import defaultPhoto from '../../materials/default-photo.png' import { Link } from 'react-router-dom' import galery from '../../materials/gallery-icon.png' import backendURL from '../../helpers/backendUrl' export const Card = ({ post }) => ( <> {post?.images && post?.images.length > 1 ? (
) : post?.images && post?.images[0] && post.images[0]?.url ? (
) : (
)} )