Something went wrong. Try again.
[READ-ONLY] Mirror of https://github.com/Savy011/fullstackopen-exercises. My Exercise Submissions for FullStack Open fullstackopen.com/en
Something went wrong. Try again.
380 B · 18 lines
JavaScript
at main
12345678910111213141516171819import Blog from './Blog'
const BlogList = ({ blogs }) => { return ( <div> {blogs .sort((a, b) => b.likes - a.likes) .map(blog => ( <Blog key={blog.id} blog={blog} /> ))} </div> )}
export default BlogList