728x90
300x250
SMALL
클래스 컴포넌트를 정의할 때는 Componet를 상속 받아야 하며, render 메서드 내에 JSX를 반환하여 UI를 구성한다.
class 클래스명 extends Component {
constructor(props) {
super(props);
this.state = {}; // 상태를 초기화
}
render() {
return (
<div>
{/* JSX를 넣는다. */}
</div>
);
}
}
728x90
반응형
LIST
'Front-end > React' 카테고리의 다른 글
클래스 컴포넌트에서 constructor 생성자 (1) | 2024.11.20 |
---|---|
React Developer Tools 설치 (0) | 2024.11.19 |
리액트에서 함수형과 클래스형 컴포넌트 두 가지 방식이 존재하는 이유 (0) | 2024.11.16 |
컴포넌트 추출 (1) | 2024.11.15 |
컴포넌트 합성 (1) | 2024.11.14 |
댓글