Props2 [React] props 전달받기 예제 - 떽떽대는 개발공부 react 를 공부하는데 있어 props 값이 기본이지만 이해하는데 어려움이 있었다. 이번엔 컴포넌트 3개를 이용하여 container, input, result 각각 작성하여 props 값 넘기기 예제를 작성해 보았다. 먼저, 아래와 같이 컴포넌트 3개를 작성한다. src/BoardContainer.js import React from 'react'; import BoardInput from '@BoardNew/BoardInput' import BoardResult from '@BoardNew/BoardResult' function BoardContainer() { return( ) } export default BoardContainer; src/BoardInput.js import React fro.. 2021. 1. 21. [React] Component 에서 props 사용하기-떽떽대는 개발공부 2020/12/31 - [React] - [React] Component 생성하고 모듈화하기 [React] Component 생성하고 모듈화하기 2020/12/30 - [React] - [React] 프로젝트 생성하고 실행하기 Component 생성 및 모듈화 이전 글에서 프로젝트를 생성했다면 이제 component를 생성하여 프로젝트를 진행할 수 있다. src/index.js import React fr.. ddeck.tistory.com props props 는 컴포넌트에서 사용 할 데이터 중 변동되지 않는 데이터를 다룰 때 사용한다. parent 컴포넌트에서 child 컴포넌트로 데이터를 전할 때, props 가 사용된다. props 추가하기 컴포넌트에서 변하지 않는 데이터가 필요 할 땐, rend.. 2020. 12. 31. 이전 1 다음