반응형
Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 자바의정석
- CSS
- 국비코딩
- react
- ReactNative
- 정보처리기사실기요약
- spring
- 정보처리기사정리
- typescript
- 코딩테스트
- 자바스크립트 코딩테스트
- 국비IT
- VUE
- 이안의평일코딩
- javascript
- Oracle
- 타입스크립트
- 스프링
- 리액트
- 정보처리기사요약
- 정보처리기사실기
- 오라클
- 자바스크립트
- 정보처리기사
- 정보처리기사실기정리
- php
- 평일코딩
- 자스코테
- Java의정석
- 리액트네이티브
Archives
- Today
- Total
이안의 평일코딩
[오류해결] Expected an assignment or function call and instead saw an expression no-unused-expressions 본문
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 />)
})}
반응형
'Error' 카테고리의 다른 글
[오류해결] Error: Node Sass version 5.0.0 is incompatible with ^4.0.0. (0) | 2021.01.25 |
---|---|
[오류해결] npm install 설치시 npm ERR! code ERESOLVE (5) | 2021.01.15 |
[오류해결] address already in use :::5000 (0) | 2021.01.12 |
[오류해결] 'Axios' is not defined no-undef (0) | 2021.01.12 |
[오류해결] 'Icon' is not exported from 'antd' (0) | 2021.01.11 |
Comments