What is a Component?

A component is a reusable and independent UI block.

There are 2 types:

Function Components (Modern)

Class Components (Legacy)

// Function Component
function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}

Component Comparison (Function vs Class)

CriteriaFunction ComponentClass Component
Concise & easier to write
Supports Hooks
Easier to test
Lifecycle methodsVia useEffect()Built-in in class
Recommended in modern React

Bình luận

Để lại một bình luận

Email của bạn sẽ không được hiển thị công khai. Các trường bắt buộc được đánh dấu *