What is JSX?
JSX stands for JavaScript XML. It allows us to write HTML-like code inside JavaScript.
jsx const element =
Hello, World!
;React transforms this into React.createElement() calls. Note: In JSX, we use className instead of class and htmlFor instead of for.