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
- 명령어
- sql 공유
- Configmap
- SecurityContextHolder
- amazon ebs종류
- private repostiroy
- statefulset
- pod
- amazon ebs
- kubectl명령어
- 쿠버네티스
- yaml예시
- k8s
- aws cli ec2
- 쿠버네티스교과서
- kubectl
- cli ec2
- linux 파일복사
- amazon ebs활용
- 서버간 파일전송
- docker
- docker myql
- describe-instances
- EC2
- aws cli
- jenkins parameter
- Ansible
- ELB
- nexus proxy
- React Native
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