const Book = (props) => {
console.log(props);
const { title, author, img} = props
return (
<article>
{/* Dynamically render title */}
<img src={img} alt={title} />
<h2>{title}</h2>
<h4>{author}</h4>
</article>
);
};
요걸..
const Book = ({ img, title, author }) => {
return (
<article>
{/* Dynamically render title */}
<img src={img} alt={title} />
<h2>{title}</h2>
<h4>{author}</h4>
</article>
);
};
이렇게 바꿀 수 있다.
'Research > React' 카테고리의 다른 글
React_props 깔끔하게 가져오기 (0) | 2023.04.24 |
---|---|
React_Childeren props 사용하기 (0) | 2023.04.22 |
React_props 간단히 사용하기 (0) | 2023.04.21 |
React_public 디렉터리에서 이미지 불러오기 (0) | 2023.04.21 |
React_간단한 list 구현 (1) | 2023.04.21 |
댓글