확장 연산자를 사용하여 아이템 전달

const cardProps = { title: "Card Title", content: "Hello  World" };

const App = () => {
  return (
    <Card
      title={cardProps.title}
      content={cardProps.content}
    />
  );
};
더 쉬운 방법:
const cardProps = { title: "Card Title", content: "Hello  World" };

const App = () => {
  return <Card {...cardProps} />;
};

좋은 웹페이지 즐겨찾기