주의 사항
JSX를 사용할 때 주의할 점
속성 이름은 camelCase로!
<div className="container" tabIndex="-1">
/* ... */
</div>콘텐츠가 없는 요소는 항상 닫아야!
<div className="empty-elements">
<img src={image.src} alt={image.alt} />
<br />
<map>
{mapItems.map(item => (
<area
key={item.key}
shape={item.shape}
coords={item.coords}
href={item.href}
title={item.title}
/>
))}
</map>
</div>루트 요소는 하나만 사용!
Last updated