JSX stands for JavaScript XML. A javascript derivative synstax that is used to express visual elements in a React component. JSX lets us describe visual elements in an HTML like syantax but internally it transforms that syantax into code that React actually uses. JSX is nothing more than syntatic sugar for the createElement function from React […]