강의

멘토링

커뮤니티

Inflearn Community Q&A

No author

This post's author information has been deleted.

Master React: From Basic Concepts to LinCanva Projects

List Rendering

map 사용이후 렌더링이 안됩니다

Written on

·

120

·

Edited

1

import Card from "../Card.jsx";
import Courseitem from "./Courseitem.jsx";

function CourseListCard({ items }) {
  return (
    <Card title={"강의 목록"}>
      <div className="courses">
        {items.map((item) => {
          return <Courseitem {...item} />;
        })}
      </div>
    </Card>
  );
}

export default CourseListCard;

강사님과 동일한 코드를 작성했는데도 저는 렌더링이 되지 않습니다 ㅠㅠ

 

 

 

reactReact-Contextreact-routertailwindcssreact-query

Answer 1

1

고쳤어용 : )

 

gymcoding님의 프로필 이미지
gymcoding
Instructor

다행이에요~! 화이팅! 👏👏👏👏👏

 

No author

This post's author information has been deleted.

Ask a question