Final answer:
React applications commonly use terms like components, state, props, and JSX.
Step-by-step explanation:
In React applications, the following terms are commonly used:
- Components: These are the building blocks of a React application. They are reusable and independent pieces of code that encapsulate the UI logic and UI state.
- State: State represents the data that can change in a React component. It can be used to store and update information within a component.
- Props: Props (short for properties) are used to pass data from a parent component to its child component. They are read-only and cannot be modified by the child component.
- JSX: JSX (JavaScript XML) is an extension of JavaScript that allows you to write HTML-like code in your JavaScript files. It is used to define the structure and appearance of React components.