import { Link } from "react-router-dom"; import React from "react"; function CardItem(props) { return ( <>
  • Travel Image
    {props.text}
  • ); } export default CardItem;