728x90 300x250 2024/11/171 클래스 컴포넌트 기본문법 클래스 컴포넌트를 정의할 때는 Componet를 상속 받아야 하며, render 메서드 내에 JSX를 반환하여 UI를 구성한다.class 클래스명 extends Component { constructor(props) { super(props); this.state = {}; // 상태를 초기화 } render() { return ( {/* JSX를 넣는다. */} ); }} 2024. 11. 17. 이전 1 다음 728x90 반응형