diff --git a/docs/docs/integrating-with-other-libraries.md b/docs/docs/integrating-with-other-libraries.md index 85704ab53b1..08f99dedd93 100644 --- a/docs/docs/integrating-with-other-libraries.md +++ b/docs/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 (