Props vs State

CriteriaPropsState
What is it?Data from parent componentInternal data of the component
Who manages it?Managed by parentManaged by itself
Mutable?No (read-only)Yes, via setState or useState
Accessible inside component?Yeses
PurposeConfigure & pass data to componentTrack dynamic internal state
function Welcome(props) {
  return <h1>Hello, {props.name}</h1>;
}

function Counter() {
  const [count, setCount] = useState(0);
  return <button onClick={() => setCount(count + 1)}>Count: {count}</button>;
}

Key point:

  • Props are read-only, used to configure the component from outside.
  • State is used to track internal changes, often in response to user interactions or logic updates.

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 *