Notice
Recent Posts
Recent Comments
Link
«   2025/01   »
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
more
Archives
Today
Total
관리 메뉴

ksw_devlog

TIL 9주 5일차 본문

TIL

TIL 9주 5일차

kimcoach 2022. 12. 30. 21:04

리액트 네이티브

 

const onChangeText = (e) => {
    setText(e.target.value);
  };

=> 웹에선 보통 이렇게 작성

const onChangeText = (text) => {
    setText(text);
  };

=> RN에서는 이렇게 작성

 

 

'TIL' 카테고리의 다른 글

TIL 10주 1일차  (0) 2023.01.02
WIL 9주차  (0) 2023.01.02
TIL 9주 4일차  (0) 2022.12.29
TIL 9주 3일차  (0) 2022.12.28
TIL 9주 2일차 - React Project  (0) 2022.12.27