import React from 'react'; const PostsStats = ({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 = PostsStats; export default PostsStats;