mirror of
https://github.com/vale981/Vulcan
synced 2025-03-08 19:11:38 -05:00
12 lines
245 B
React
12 lines
245 B
React
![]() |
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;
|