Skip to content

Instantly share code, notes, and snippets.

@npverni
Last active March 15, 2016 23:16
Show Gist options
  • Save npverni/f1e16a4616ee716c62a3 to your computer and use it in GitHub Desktop.
Save npverni/f1e16a4616ee716c62a3 to your computer and use it in GitHub Desktop.
{
items.map((line, index) => {
return (
<LineItemForm
key={index}
line={line}
onItemChange={() => this.props.itemChanged(index)}
/>
);
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment