[React] Destructuring 구조분해문법

Rookie·2022년 3월 24일
0
post-thumbnail

ES6 디스트럭처링 문법 적용 전

const MainCard = (props) => (
  <img src= {props.img} />
)

ES6 디스트럭처링 문법 적용 후

const MainCard = ({img}) => (
  <img src = {img} /> 
)
profile
노력형 잡캐입니다

0개의 댓글