import Telescope from 'meteor/nova:lib'; import React from 'react'; const PostsStats = ({post}) => { return (
{post.score ? {Math.floor(post.score*10000)/10000} Score : ""} {post.upvotes} Upvotes {post.clickCount} Clicks {post.viewCount} Views
) } PostsStats.displayName = "PostsStats"; module.exports = PostsStats; export default PostsStats;