mirror of
https://github.com/vale981/Vulcan
synced 2025-03-10 12:36:39 -04:00
11 lines
207 B
React
11 lines
207 B
React
![]() |
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;
|