import { Components, registerComponent } from 'meteor/vulcan:core'; import React from 'react'; const PostsStats = ({post}) => { return (
{post.score ? {Math.floor((post.score || 0)*10000)/10000} Score : ""} {post.baseScore || 0} Upvotes {post.clickCount || 0} Clicks {post.viewCount || 0} Views
) } PostsStats.displayName = "PostsStats"; registerComponent('PostsStats', PostsStats);