Stateless Functional Components 예제 반응
2487 단어 reactstatelessfunctional
Stateless Functional Components 예제 반응
게시물React Components example에서 React 구성 요소를 정의하는 방법을 알고 있습니다. 상태 비저장 기능 구성 요소라고 하는 더 간단한 방법이 있습니다. 상태가 없는 구성 요소에만 이 방법을 사용할 수 있음을 기억하십시오.
관련 게시물:
I. 방법
클래스에서 만든 구성 요소를 사용하여:
class MyComponent extends React.Component {
render() {
return (
<div>
<h2>{this.props.abc}</h2>
<h4>{this.props.xyz}</h4>
</div>
);
}
}
다른 방식으로 정의할 수 있습니다(상태 비저장 기능 구성 요소 방식).
const Header = (props) => {
return (
<div>
<h2>{props.abc}</h2>
<h4>{props.xyz}</h4>
</div>
);
};
상태 비저장 구성 요소는 단지 함수라는 것을 알 수 있습니다.
this
키워드가 없습니다.II. 관행
1. 개요
다음과 같은 React Note 애플리케이션을 빌드할 것입니다: React Note Application – React props and state example 가능한 한 Stateless Functional Components를 사용하여:
더 보기:
https://grokonez.com/frontend/react/react-stateless-functional-components-example
Stateless Functional Components 예제 반응
Reference
이 문제에 관하여(Stateless Functional Components 예제 반응), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/loizenai/react-stateless-functional-components-example-1bgp텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)