2024년 8월 31일
출처: 313DEVGRP
React component란 사용자 정의 태그를 만드는 기술
사용자 정의 태그 = Component
스타일드 컴포넌트를 사용하지 않은 코드
const ReactButton = (props)=> {
const style = {
color: 'white',
backgroundColor: 'purple'
}
return <button style={style}>{props.children}</button>
}