공부 기록/React

props에 대한 이해

naraewool 2023. 8. 13. 16:13
728x90

 

코드를 직접 작성할 때 props를 어디에 어떻게 설정해야하는지 헷갈렸는데 이 글을 일부 보니 이해가 된다.

https://www.robinwieruch.de/react-pass-props-to-component/

 

How to use Props in React

Everything you need to know about props in React. How to pass props to components, how to set default props, how to know the difference between props and state, and how to pass components or functions as props, ...

www.robinwieruch.de

데이터를 하나의 컴포넌트에서 다른 컴포넌트로 전달하는 방법은?

JSX구문에서 사용자 지정 HTML 속성을 정의하고, 데이터를 전달할 수 있는 props를 입력한다.

→ 이것이 proprs의 개념

**props란 부모로부터 자식 컴포넌트로 전달될 수 있다. (자식 → 부모로는 props 전달 안됨)

나머지 다른 내용도 읽어봐야지!