{ blogs.map(blog => { return (<tr> <td> {blog.title} </td> <td>{blog.content}</td> <td>Edit</td> <td>Delete</td> </tr>) }) }