Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- statefulset
- 서버간 파일전송
- React Native
- 응봉현대아파트
- 행당대림아파트
- pod
- k8s
- 행당한진아파트
- 2025년정책
- ELB
- linux 파일복사
- aws cli
- EC2
- 답십리 파크자이
- nexus proxy
- docker
- Ansible
- 9억이하
- 천호태영아파트
- 아파트
- 명령어
- describe-instances
- 황학동롯데캐슬
- Configmap
- private repostiroy
- 쿠버네티스
- kubectl
- 5호선
- sql 공유
- 행당역
Archives
- Today
- Total
게으름을 위한 부지런한 게으름뱅리' 블로그
React Native 하루 기록 - Core Components 본문
반응형
Core Components 공식 문서
https://reactnative.dev/docs/components-and-apis
Components ?
재사용 가능한 개별적인 여러 조각
Components 종류
1. 클래스형 컴포넌트
- class 키워드 필요
- Component를 상속
- render() 메소드 필요
- state, lifeCycle 기능 사용가능
- 함수형보다 메모리 자원을 더 사용
class FriendList extends React.Component {
render() {
return (
<View>
<Friend name="A" />
<Friend name="B" />
<Friend name="C" />
</View>
)
}
}
2. 함수형 컴포넌트
- state, lifeCycle 관련 기능 사용 불가 -> hook으로 해결
- 클래스형보다 메모리 자원을 덜 사용
- 컴포넌트 선언이 편함
- 공식문서 : 함수형 컴포넌트 + hook 사용을 권장
const Friend = (props) => {
return <Text>{props.name}</Text>;
}
export default () => {
return(
<View>
<Friend name="A" />
<Friend name="B" />
<Friend name="C" />
</View>
)
}
반응형
'IT > FrontEnd' 카테고리의 다른 글
React Native 하루 기록 - SafeAreaView (0) | 2022.12.09 |
---|---|
React Native 하루 기록 - custom Hook (0) | 2022.12.09 |
React Native 하루 기록 - React Hook (0) | 2022.12.08 |
React Native 하루 기록 - Expo Cli (0) | 2022.12.07 |
React Native 하루 기록 - 시작하기 (0) | 2022.12.07 |
Comments