inflearn logo
강의

강의

N
챌린지

챌린지

멘토링

멘토링

N
클립

클립

로드맵

로드맵

지식공유

스케치님의 게시글

스케치 스케치

@rnrmf07210431

수강평 작성수
-
평균평점
-

게시글 2

질문&답변

미니 프로제트에서 map의 요소를 왜 찾지 못하는지 모르겠습니다

import React from "react"; import styled from "styled-components"; import CommentListItem from "./CommentListItem"; const Wrapper = styled.div` display: flex; flex-direction: column; align-item: flex-start; justify-content: center; & > * { :not(:last-child){ margin-bottom: 16px; } } `; function CommentList(props){ const { comments } = props; return ( {comments && comments.map((comment, index) => { return })} ); } export default CommentList; 위와 같이 수정하여 고쳤습니다. data가 불러들는 것보다 브라우저에서 파일을 읽는 것이 빠라서 발생한 오류라고 해서 위와 같은 해결 방법을 사용했습니다. 질문에 답변해주셔서 감사합니다:)

좋아요수
0
댓글수
2
조회수
466