import React from "react"; import {Link} from 'react-router-dom'; import { Container } from "react-bootstrap"; import nofoto from '../images/placeholder.png' export const MyFeed=({_id, price, owner,title,description,images,comments,createdAt}) => { return (
{images ? : }
{title}

{description}

{`${price ? price : "0"} грн.`}

Редактировать
) }