-
Notifications
You must be signed in to change notification settings - Fork 262
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
React Without JSX #55
Conversation
Deploy preview for idreactjs ready! Built with commit eaaa74f |
Deploy preview for id-reactjs ready! Built with commit eaaa74f |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Guess can't leave more reviews on this one.
@@ -4,11 +4,11 @@ title: React Without JSX | |||
permalink: docs/react-without-jsx.html | |||
--- | |||
|
|||
JSX is not a requirement for using React. Using React without JSX is especially convenient when you don't want to set up compilation in your build environment. | |||
JSX bukan persyaratan untuk menggunakan React. Menggunakan React tanpa JSX sangat cocok ketika Anda tidak ingin mengatur kompilasi di lingkungan pembangunan Anda. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
JSX bukan persyaratan untuk menggunakan React. Menggunakan React tanpa JSX sangat cocok ketika Anda tidak ingin mengatur kompilasi di lingkungan pembangunan Anda. | |
JSX bukan persyaratan untuk menggunakan React. Menggunakan React tanpa JSX sangat cocok ketika Anda tidak ingin mengatur kompilasi di *build environment* Anda. |
Kinda weird to translate build environment
. It is more like term for me IMO.
|
||
The component can either be provided as a string, or as a subclass of `React.Component`, or a plain function for stateless components. | ||
Komponen dapat diberikan sebagai string, atau sebagai subkelas dari `React.Component`, atau fungsi murni untuk komponen _stateless_. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Komponen dapat diberikan sebagai string, atau sebagai subkelas dari `React.Component`, atau fungsi murni untuk komponen _stateless_. | |
Komponen dapat diberikan sebagai _string_, atau sebagai subkelas dari `React.Component`, atau fungsi murni untuk komponen _stateless_. |
|
||
For example, this code written with JSX: | ||
Misalnya, kode ini ditulis dengan JSX: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Misalnya, kode ini ditulis dengan JSX: | |
Misalnya, kode yang ditulis dengan JSX berikut: |
@@ -23,7 +23,7 @@ ReactDOM.render( | |||
); | |||
``` | |||
|
|||
can be compiled to this code that does not use JSX: | |||
Dapat dikompilasi dengan kode dibawah ini untuk yang tidak menggunakan JSX: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Dapat dikompilasi dengan kode dibawah ini untuk yang tidak menggunakan JSX: | |
dapat dikompilasi menjadi kode yang tidak menggunakan JSX berikut: |
@@ -38,11 +38,11 @@ ReactDOM.render( | |||
); | |||
``` | |||
|
|||
If you're curious to see more examples of how JSX is converted to JavaScript, you can try out [the online Babel compiler](babel://jsx-simple-example). | |||
Jika Anda ingin tahu lebih lanjut untuk melihat banyak contoh tentang bagaimana JSX dikonversi ke JavaScript, Anda dapat mencobanya di [the online Babel compiler](babel://jsx-simple-example). |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Jika Anda ingin tahu lebih lanjut untuk melihat banyak contoh tentang bagaimana JSX dikonversi ke JavaScript, Anda dapat mencobanya di [the online Babel compiler](babel://jsx-simple-example). | |
Jika Anda ingin melihat lebih banyak contoh tentang bagaimana JSX dikonversi ke JavaScript, Anda dapat mencobanya di [the online Babel compiler](babel://jsx-simple-example). |
Hi @brilyandk, please address the review items above before I can merge this. |
No description provided.