Vulcan/packages/base-components/lib/posts/Post.jsx

11 lines
207 B
React
Raw Normal View History

const Post = (props) => {
return (
<div className="post">
<h3>{props.title}</h3>
<p>{moment(props.postedAt).fromNow()}</p>
<p>{props.body}</p>
</div>
)
}
module.exports = Post;