dtro-devuk Knowledge Base

Logo

A curated list of helpful material on some of my Development Stack

View the Project on GitHub dtro-devuk/KnowledgeBase

React JSX Knowledgebase AUG 2020

Title Author Version Group Sub-Levels
React JSX Knowledgebase Page dtro-devuk 1.0   0

Intro

Its a syntax extension to JavaScript. It produces React Elements.

JSX provides syntatic sugar for the React.createElement(component, props, …children) function.

Its used with React to describe what the UX should look like. Its a bit like a template lang, but with the full power of JavaScript.

This means it compiles to react. In order for this to happen, it needs to be compiled in your solution, unless you are using the online references to the library.

Why JSX?

*

Samples

Resources

Courses