/** * A simple Card component * @returns {JSX.Element} content of the Card */ function Card() { return (
Titre
Content
); } export default Card;