File size: 393 Bytes
aedd342
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import React from "react";
import "./Card.css";

function InterestCard({ interest }) {
  return (
    <div className="InterestCard">
      <div className="img-circle">
        <img src={interest.image} alt="" />
      </div>

      <div className="texto-card">
        <h3>{interest.name}</h3>
        <p>{interest.description}</p>
      </div>
    </div>
  );
}

export default InterestCard;