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.
346 B · 15 lines
JavaScript
at main
12345678910111213141516import { Link } from 'react-router-dom'
const Blog = ({ blog }) => { return ( <div className="blog"> <div className="blog-title"> <Link to={`/blogs/${blog.id}`}> <i>{blog.title}</i> - {blog.author} </Link> </div> </div> )}
export default Blog