mirror of
https://github.com/vale981/Vulcan
synced 2025-03-07 02:21:43 -05:00
12 lines
No EOL
245 B
JavaScript
12 lines
No EOL
245 B
JavaScript
const PostItem2 = props => {
|
|
return (
|
|
<div className="post">
|
|
<h3><a href={FlowRouter.path("post", props)}>xyz/{props.title}</a></h3>
|
|
<p>{props.url}</p>
|
|
</div>
|
|
)
|
|
};
|
|
|
|
// export default PostItem;
|
|
|
|
module.exports = PostItem2; |