From 38aefe5d7be726a0bab77361d35b56104f1712c2 Mon Sep 17 00:00:00 2001 From: Ray Dai Date: Fri, 9 Sep 2016 01:20:25 +1000 Subject: [PATCH] Update 14-communicate-between-components.md (#7680) To demonstrate multiple arguments `bind(this, arg1, arg2, ...)`, also not to pass in for than what `handleClick` needed, namely props, or maybe even pass item itself, etc. Going to change the kor file after review. --- tips/14-communicate-between-components.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tips/14-communicate-between-components.md b/tips/14-communicate-between-components.md index 0db0d63a..47194815 100644 --- a/tips/14-communicate-between-components.md +++ b/tips/14-communicate-between-components.md @@ -13,8 +13,8 @@ For child-parent communication: Say your `GroceryList` component has a list of items generated through an array. When a list item is clicked, you want to display its name: ```js -var handleClick = function(i, props) { - console.log('You clicked: ' + props.items[i]); +var handleClick = function(i, items) { + console.log('You clicked: ' + items[i]); } function GroceryList(props) { @@ -22,7 +22,7 @@ function GroceryList(props) {
{props.items.map(function(item, i) { return ( -
{item}
+
{item}
); })}