React Notes
React.js Note Intro React is a JavaScript library for rendering UI Components React is all about Components A component is a piece of the UI that has its own logic and appearance We don’t have to manipulate DOM manually anymore with components A component is just a JavaScript function Their names always begin with a capital letter They return JSX markup React application begins at a “root” component JSX JavaScript XML A syntax extension for JavaScript that lets you write HTML-like markup inside a ....