반응형
리액트 - props

기술개발/React, Frontend 2021. 3. 5. 12:09

(주의!!)본 글은 현재 시점에서는 레거시한 '클래스 컴포넌트'를 공부하며 작성한 글입니다. props props 는 컴포넌트에서 사용 할 데이터 중 변동되지 않는 데이터를 다룰 때 사용 parent 컴포넌트에서 child 컴포넌트로 데이터를 전할 때 사용 쉽게 말해서 컴포넌트를 호출할때 넣어주는 것 변경될 때 리렌더링 일어남 편의상 한 jsx 파일안에 2개의 클래스를 사용 import React from 'react'; class BusinessName extends React.Component { render() { const { brand } = this.props; // console.log(brand); return hello, {brand}; } } class Contact extends Re..

Article Thumbnail
반응형