Browse Source

Typo "React.createRef()" :) (#1105)

main
Vasyl Stokolosa 6 years ago
committed by Dan Abramov
parent
commit
76ef485ef6
  1. 2
      content/docs/accessibility.md

2
content/docs/accessibility.md

@ -233,7 +233,7 @@ constructor(props) {
super(props);
this.state = { isOpen: false };
this.toggleContainer = createRef();
this.toggleContainer = React.createRef();
this.onClickHandler = this.onClickHandler.bind(this);
this.onClickOutsideHandler = this.onClickOutsideHandler.bind(this);

Loading…
Cancel
Save