: 유저가 발생시키는 이벤트에 대해 변하는 값으로 내부에서 변화하는 값이라고 볼 수 있습니다.
: 외부로부터 전달받은 값입니다.
function Parent() {
return (
<div className="parent">
<h1>I'm the parent</h1>
// 속성 값 정의
<Child text={"I'm the eldest child"}/>
<Child text2={"I'm the second child"}/>
<Child />
</div>
);
}
// props 전달
function Child(props) {
return (
<div className="child">
//전달받은 props 렌더링
<p>{props.text}</p>
<p>{props.text2}</p>
</div>
);
}