React

React is a popular JavaScript library used for building user interfaces, especially web applications. It helps developers build apps by breaking the UI into components—small, reusable pieces of code (like buttons, forms, or entire sections of a page).

Key Ideas:

Example:

function Hello() {
  return <h1>Hello, world!</h1>;
}

This simple React component shows “Hello, world!” on a webpage.