Introducing JSX

JSX is the markup language that makes it easier to create React components

We'll cover the following...

JSX

You might have seen React code samples floating around, and something that might’ve struck you is the weird HTML-ish syntax in the JavaScript code that is used by most of the community.

This syntactic sugar is called “JSX”, and is nothing but a wrapper for React.createElement!

Instead of calling ...