Upload 5.3 and 5.4
This commit is contained in:
@@ -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;
|
||||
|
||||
Reference in New Issue
Block a user