Skip to content

Commit 7d8abd8

Browse files
authored
Fix a code mistake
1 parent b4b7c2a commit 7d8abd8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

content/docs/integrating-with-other-libraries.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -416,7 +416,7 @@ const BackboneNameInput = connectToBackboneModel(NameInput);
416416
417417
function Example(props) {
418418
function handleChange(e) {
419-
model.set('firstName', e.target.value);
419+
props.model.set('firstName', e.target.value);
420420
}
421421
422422
return (

0 commit comments

Comments
 (0)