Browse Source

Merge pull request #534 from DJDA/patch-1

Update faq-functions.md
main
Alex 7 years ago
committed by GitHub
parent
commit
2cebd55cf2
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      content/docs/faq-functions.md

2
content/docs/faq-functions.md

@ -155,7 +155,7 @@ class Alphabet extends React.Component {
this.handleClick = this.handleClick.bind(this);
this.state = {
justClicked: null,
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i)).
letters: Array.from({length: 26}, (_, i) => String.fromCharCode(A + i))
};
}
handleClick(letter) {

Loading…
Cancel
Save