Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Translate: React without ES6 #118

Merged
merged 17 commits into from
Feb 7, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update content/docs/react-without-es6.md
change on sentence about properties binding (as suggested)

Co-Authored-By: adielhercules <jadher.11x2@gmail.com>
carburo and adielhercules authored Feb 7, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 6c736e6a278cc2015823cfd66a2b8f40234fd67d
2 changes: 1 addition & 1 deletion content/docs/react-without-es6.md
Original file line number Diff line number Diff line change
@@ -110,7 +110,7 @@ class SayHello extends React.Component {
}
```

Con `createReactClass()`, esto no es necesario porque todos los metódos son automaticamente vinculados con la instancia:
Con `createReactClass()`, esto no es necesario porque vincula todos los métodos:

```javascript
var SayHello = createReactClass({