Dualo
React Basics

What is React?

A JavaScript library for building user interfaces.

1 min read

is a JavaScript library that helps you build the visible part of a website — buttons, forms, menus — in small reusable pieces.

You describe what the screen should look like based on the current data, and React updates the for you when the data changes.

Think of it like a set of LEGO bricks: small components you combine to build any interface.

Diagram

Grounded on https://react.dev/learn

Next up

Components & Props

Build your UI from small, reusable pieces driven by inputs.