Created
June 8, 2020 18:29
-
-
Save alexandargyurov/c06d943935145f14ba55f826c7bac5f8 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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