Development/ReactNative

[study] 구조분해

mefd 2024. 2. 2. 08:36
728x90

구조분해

  const renderItem = ({ item: image, index }) => {

  const { id, uri } = image;         //구조분해  : image를 쓸 수도 있고, id, uri도 단독으로 쓸 수 있다.

...

}

728x90