, если вы хотите показать несколько карт в виде списка или чего-то еще, вы можете рассмотреть итерацию массива и отобразить несколько карт, как показано ниже
function App() {
return data.map((i, index) => <CardView key={index} {...{ i }} />);
}
const CardView = ({
title = "Default Title",
text = "Default Text",
imgsrc = "default_holder.js/100px180"
}) => (
<Card style={{ width: "18rem" }}>
<Card.Img variant="top" src={imgsrc} />
<Card.Body>
<Card.Title>{title}</Card.Title>
<Card.Text>{text}</Card.Text>
</Card.Body>
</Card>
);
const data = [
{
title: "First Title",
text: "First Text",
imgsrc: "firstimg.jpg"
},
{
title: "second Title",
text: "second Text",
imgsrc: "secondimg.jpg"
},
{
title: "third Title",
text: "third Text",
imgsrc: "thirdimg.jpg"
}
];