From 7d8abd8f13c3ce8bab32de18241abfc45d2ab854 Mon Sep 17 00:00:00 2001 From: Dan Abramov Date: Tue, 21 Nov 2017 14:29:15 +0000 Subject: [PATCH] Fix a code mistake --- content/docs/integrating-with-other-libraries.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/docs/integrating-with-other-libraries.md b/content/docs/integrating-with-other-libraries.md index 43b94279..63cf9cc2 100644 --- a/content/docs/integrating-with-other-libraries.md +++ b/content/docs/integrating-with-other-libraries.md @@ -416,7 +416,7 @@ const BackboneNameInput = connectToBackboneModel(NameInput); function Example(props) { function handleChange(e) { - model.set('firstName', e.target.value); + props.model.set('firstName', e.target.value); } return (