import { Components, registerComponent } from 'meteor/nova:core';
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";
registerComponent('PostsStats', PostsStats);