Introduction

A JS lib for building UI, mostly for web apps.

<aside> 💡

Like Lego blocks: small pieces (components) can reuse to build a bigger app.

</aside>


React and Single Page Applications (SPA)

React is commonly used to create SPA:

Workflow:

  1. React apps only have a HTML page (empty shell)
    1. The root, public/index.html.
  2. React renders the entire UI in a single DOM element, usually <div id="root"></div>.