import React from"react";import Card from"./Card";functionParentComponent(){return (<div><Cardheader="Card Header"title="Title"text="With supporting text below as a natural lead-in to additional content."footer="This is card footer" />{/* Example without header and footer */}<Cardtitle="Title without header and footer"text="With supporting text below as a natural lead-in to additional content." />{/* Example without title and text */}<Cardheader="Card Header without title and text"footer="This is card footer" /></div> );}exportdefault ParentComponent;