What is JSX?
4 May 2022 (Updated 5 May 2022)
On this page
JSX (JavaScript XML) is an XML-like syntax that compiles to JavaScript. When used in React, it provides syntactic sugar for the React.createElement(component, props, ...children)
function.
JSX compiles into JavaScript
The following JSX code:
compiles into:
You can use the Babel REPL to see how JSX compiles into JavaScript.
JSX is optional in React
JSX is just syntactic sugar for various React APIs. So, you could build an entire React app without using JSX. Here’s an example (CodeSandbox):
Sources
Tagged:
React
Thanks for your comment . Once it's approved, it will appear here.
Leave a comment