## Notes
*JSX* stands for *JavaScript XML* and allows HTML to be written in JavaScript. JSX is typically converted to JavaScript function calls using tools like Babel.
```javascript
const element = <h1>Hello, world!</h1>
// the above becomes
const element = React.createElement("h1", null, "Hello, world!");
```
## Referencias
- [[ReactJS Study MOC]]