Upload 5.3 and 5.4

This commit is contained in:
Andrew Trieu
2023-06-19 15:06:53 +03:00
parent 714cc5d171
commit bef62485da
4 changed files with 113 additions and 39 deletions

View File

@@ -1,7 +1,9 @@
const Blog = ({blog}) => (
<div>
{blog.title} {blog.author}
</div>
)
const Blog = ({ blog }) => (
<tr>
<td>{blog.title}</td>
<td>{blog.author}</td>
<td>{blog.url}</td>
</tr>
);
export default Blog
export default Blog;