Skip to content

Instantly share code, notes, and snippets.

@darksh3ll
Last active December 17, 2018 19:17
Show Gist options
  • Select an option

  • Save darksh3ll/a5bd6fd3a4eaf4efc4473e1dfff136a0 to your computer and use it in GitHub Desktop.

Select an option

Save darksh3ll/a5bd6fd3a4eaf4efc4473e1dfff136a0 to your computer and use it in GitHub Desktop.
<div className="App">
<Table>
<thead>
<tr>
<th>id</th>
<th>title</th>
<th>body</th>
</tr>
</thead>
{
this.state.posts.map((x) => {
return(
<tbody>
<tr>
<td>{x.id}</td>
<td>{x.body}</td>
<td>{x.title}</td>
<td>🗑</td>
<td>❌</td>
</tr>
</tbody>
)
})
}
</Table>
</div>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment