import Button from 'react-bootstrap/Button'; import Card from 'react-bootstrap/Card'; function CardWrapper( {title = "", text = "", imageSrc = "", btnText = "", btnHref = ""} ) { return ( {title} {text} ); } export default CardWrapper;