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