Skip to content

Instantly share code, notes, and snippets.

@alexandargyurov
Created June 8, 2020 18:29
Show Gist options
  • Select an option

  • Save alexandargyurov/c06d943935145f14ba55f826c7bac5f8 to your computer and use it in GitHub Desktop.

Select an option

Save alexandargyurov/c06d943935145f14ba55f826c7bac5f8 to your computer and use it in GitHub Desktop.
render() {
return (
<div>
{this.state.tableData.map((blog, index) => {
return (
<Article
title={blog.title}
description={blog.description}
date={blog.date}
link={'/blog/' + blog.slug}
key={index}
/>
)
})}
</div>
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment