반응형
render, state, prop 설명
https://junlab.tistory.com/m/179
bind
https://myksb1223.github.io/reactnative/2019/04/24/React-Native-31.html
componentDidMount
componentDidMount() {}
컴포넌트가 브라우저에 생성되어 표시된다면 호출되는 메소드입니다. js에서 DOM을 조작할 때 DOMContentLoaded처럼 모든 컴포넌트가 그려진 이후에 특정 동작을 실행하고 싶다면, 이 메소드를 이용하게 됩니다.
반응형