iamshaunjp / Complete-React-Tutorial

All course files for the Complete React Tutorial on the Net Ninja YouTube channel.
1.77k stars 1.7k forks source link

Lesson 17 #7

Open madhu00007 opened 3 years ago

madhu00007 commented 3 years ago

Lesson 17 : A little updated needed. I hope I am not wrong.

BlogList.js const BlogList = ({ blogs, title }) => { return (

{title}

{blogs.map((blog) => (

{blog.title}

Written by {blog.author}

))}

); };

export default BlogList;