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) {