Skip to content

Instantly share code, notes, and snippets.

@muneneevans
Created January 24, 2021 11:30
Show Gist options
  • Save muneneevans/3f09d613b8f36e5701c7a930e13b323f to your computer and use it in GitHub Desktop.
Save muneneevans/3f09d613b8f36e5701c7a930e13b323f to your computer and use it in GitHub Desktop.
import React from 'react'
export const PostItem = (props) => {
return(
<div>
<span>{props.post.title}</span>
<button
onClick={() =>{props.clickAction(props.post)}}>
view details
</button>
</div>
)
}
export default PostItem
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment