const Post = (props) => { return (

{props.title}

{moment(props.postedAt).fromNow()}

{props.body}

) } module.exports = Post;