JSX
The Elegant React way
Writing our code with React.createElement() and reactDOM.render(), it's a little bit verbose; not that readable.
The good thing the react team thought about that too and create a HTML-like syntactic suger on top of the raw React Api's called JSX
JSX rewrites your JavaScript files
JSX is just a tool that converts files like this:
into files like this:
Why use JSX?
To use JSX with reasonable performance, you'd need a build process, which would entail (at a minimum) understanding and installing node.js and create-react-app or babel. While this is usually acceptable, there are times when you'd rather avoid the overhead.
Learning all of this just to avoid typing createElement() a few times doesn't make much sense if you're just getting started. However, there will come a point when your apps will be large enough that tooling will be a worthwhile investment. And once you've arrived at this point, JSX is a fantastic tool to have:
Large element definitions are simplified.
It provides visual cues and assists editors with syntax highlighting.
It assists React in producing more useful error and warning messages
So let's convert our code to JSX. First of all, like react and reactDOM, we will add babel script from unpkg
Then let's try to change our React.createElement() to JSX
You may have noticed that I changed the type of our JavaScript from module to text/babel and that's to indicate to the browser not to evaluate the script . However, babel will control the compiling for that script
Easy right? How about children?
JSX appears to be HTML, but it is transformed into plain JavaScript objects under the hood by babel.
You can't return two objects from a function unless they're wrapped in an array. This explains why you can't return two JSX tags without first wrapping them in another tag or fragment.
References and articles :
Last updated
Was this helpful?