-
Notifications
You must be signed in to change notification settings - Fork 12.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #4167 from shaedrich/jsx
Create topic "JSX"
- Loading branch information
Showing
1 changed file
with
12 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
--- | ||
topic: jsx | ||
display_name: JSX (JavaScript XML) | ||
short_description: JSX is an XML-like syntax extension to ECMAScript without any defined semantics that allows creation of DOM trees. | ||
related: jxon, xhp, xml, babel, reactjs, vhtml, mithril, hyperscript, ijk, hdom | ||
created_by: Facebook | ||
released: August 4, 2022 | ||
github_url: https://github.com/facebook/jsx | ||
wikipedia_url: https://en.wikipedia.org/wiki/JSX_(JavaScript) | ||
url: https://facebook.github.io/jsx | ||
--- | ||
**JSX** is an XML-like syntax extension to ECMAScript without any defined semantics that allows creation of DOM trees. Being a syntactic sugar, JSX is generally transpiled into nested JavaScript function calls structurally similar to the original JSX. |