const PostItem = props => { ({PostCategories, PostItemCommenters} = Telescope.components); return (

{props.title}

{props.categoriesArray ? : ""}

{Users.getDisplayName(props.user)}, {moment(props.postedAt).fromNow()}, {props.commentCount} comments

Edit {props.commentersArray ? : ""}
) }; // export default PostItem; module.exports = PostItem;