React1 [React] 컴포넌트와 props # 컴포넌트 - UI를 설계하는데 쓰이는 독립적이고 재사용 가능한 부품 - 컴포넌트는 함수 컴포넌트와 클래스 컴포넌트가 있다. - 컴포넌트 내에서 다른 컴포넌트를 호출하여 합성한다. function App() { return( Youtube // 컴포넌트 ) } function Content() { return ( 고양이는 액체일까? ) } #props - 컴포넌트에 전달되는 인자 function App() { const irishBeer = {name: 'Guinness', origin: 'Ireland', available: false} return ( 맥주 // 지역변수인 irishBeer를 Beer 컴포넌트에 전달 ) } function Beer(props) { console.log(props.b.. 2023. 1. 20. 이전 1 다음