Props1 props props란? 부모 컴포넌트에서 자식 컴포넌트의 방향으로만 값을 전달할 수 있다. 자식 컴포넌트는 받은 props를 변경할 수 없다. Object의 형태로 값이 전달된다. props를 설정하는 방법 1. 부모 컴포넌트에서 자식 컴포넌트로 props를 설정하는 방법 import React from 'react'; function Son(props){ console.log(props); return 나는 {props.grandName} {props.name}의 자식 컴포넌트에오 } function Parent(props){ console.log(props) const name = '흥흥'; const grandName = props.grandName; return } function Grand(){ cons.. 2024. 1. 22. 이전 1 다음