Browse Source

Fix a code mistake

main
Dan Abramov 7 years ago
committed by GitHub
parent
commit
7d8abd8f13
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/integrating-with-other-libraries.md

2
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 (

Loading…
Cancel
Save