Vulcan/packages/base-components/lib/posts/list/PostThumbnail.jsx

10 lines
259 B
React
Raw Normal View History

2016-03-27 18:17:20 +09:00
const PostThumbnail = ({post}) => {
return (
<a className="post-thumbnail" href={Posts.getLink(post)} target={Posts.getLinkTarget(post)}>
<img src={post.thumbnailUrl} />
</a>
)
}
module.exports = PostThumbnail;
export default PostThumbnail;