Skip to content

Instantly share code, notes, and snippets.

@rkmax
Created May 22, 2018 19:58
Show Gist options
  • Save rkmax/5b843092771ce2d9566ab67d669f08d7 to your computer and use it in GitHub Desktop.
Save rkmax/5b843092771ce2d9566ab67d669f08d7 to your computer and use it in GitHub Desktop.
import PropTypes from 'prop-types'
const Note = (props) => (
<div>~{props.content.title}</div>
)
const Notes = (props) => (
<div>
There are {props.notes.length} Notes
{props.notes.map(note => <Note {...note}/>)}
<button onClick={props.noteHandleClick}>click me!</button>
</div>
)
const Main = () => (
<div>
<Notes />
</div>
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment