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
- 서버간 파일전송
- amazon ebs
- 쿠버네티스
- aws cli
- sql 공유
- amazon ebs활용
- React Native
- cli ec2
- ELB
- aws cli ec2
- kubectl
- k8s
- docker
- linux 파일복사
- docker myql
- Configmap
- describe-instances
- yaml예시
- jenkins parameter
- SecurityContextHolder
- amazon ebs종류
- Ansible
- statefulset
- kubectl명령어
- nexus proxy
- private repostiroy
- 명령어
- pod
- 쿠버네티스교과서
- EC2
Archives
- Today
- Total
목록2022/12/08 (1)
게으름을 위한 부지런한 게으름뱅리' 블로그
React Native 하루 기록 - React Hook
♩ useState 함수형 component에서 사용하는게 편하다 가독성 및 코드의 길이가 줄어듬 state상태에는 어떠한 상태라도 들어감 const [count, setCount] = useState(0); const [isOn, setIsOn] = useState(false); const [name, setName] = useState(""); ... setCount(count+1)} /> { setIsOn(v); } } /> { setName(v); } } /> ♩ 클래스 컴포넌트의 생명주기 순서 최초 : Constructor -> render -> componentDidMount 변경: render -> componentDidUpdate 제거 : componentWillUnmount compone..
IT/FrontEnd
2022. 12. 8. 23:38