import { memo } from 'react'; import { withTranslation } from 'react-i18next'; import { Link } from 'react-router-dom'; function ArticleCard({ t, id, title, description, image, updated }) { return (
{title}

{title}

{description}

{updated}

{t('article_btn')}
); } export default withTranslation('homePage')(memo(ArticleCard));