React is a JavaScript library for building interactive UIs.
It uses a component‑based architecture, meaning your UI is split into small, reusable pieces that manage their own logic and rendering.
JSX = JavaScript XML, a syntax to write HTML inside JavaScript.
const element = <h2>Hello, React!</h2>;
JSX makes UI structure easier to visualize.
Building blocks of every React app.
Example: