import { Link } from "react-router-dom"; import PropTypes from "prop-types"; import "../../scss/components/CardContact.scss"; CardContact.propTypes = { name: PropTypes.string.isRequired, gitHub: PropTypes.string.isRequired, }; function CardContact({ name, gitHub }) { return (

{name}

); } export default CardContact;