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 |
Tags
- 광명시버스분석
- react #회원가입 #비밀번호비교
- 이스케이프시퀀스
- R데이터형태
- 백준 11718
- barplot in r
- setstate
- 값삭제
- 배열추가
- plot in r
- 탈출문자
- getline
- 10172
- asynchronization
- barplot
- R 그래프
- DataFrame
- vetor
- 배열삭제
- 그대로 출력하기
- 백준 10172
- await
- 버스분석
- 값추가
- 이용현황분석
- React
- 데이터분석
- 백준
- 그래픽
- useState
Archives
- Today
- Total
devlog_zz
props 전달 받는 방법2가지 본문
728x90
전달받는 방법 2가지 props / {item}
export default function TodoItem (props) {
props.item
}
export default function TodoItem ({item}) {
item
}
전달하는
<TodoItem item={item}/>
728x90
'Front End > React Native' 카테고리의 다른 글
Todo App (0) | 2021.01.18 |
---|---|
TextInput onChangeText (0) | 2021.01.18 |
React Native TouchableOpacity (0) | 2021.01.18 |
React Native FlatList (0) | 2021.01.18 |
React Native ScrollView (0) | 2021.01.18 |
Comments