Error
[오류해결] Expected an assignment or function call and instead saw an expression no-unused-expressions
이안92
2021. 1. 13. 15:12
반응형
리액트 코딩 중에 반복문 map()에서 오류가 발생했다.
{commentLists && commentLists.map((comment, index) => {
<SingleComment />
})}
반응형
해결방법
1. map(() => ())
{ } 괄호를 ( )로 수정해주면 오류는 바로 해결된다.
{commentLists && commentLists.map((comment, index) => (
<SingleComment />
))}
2. map(() => {})
그렇다면 { }를 굳이 쓰고싶다면 return( )을 넣어주면 된다.
{commentLists && commentLists.map((comment, index) => {
return(<SingleComment />)
})}
반응형