-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.js
31 lines (30 loc) · 925 Bytes
/
index.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
import React from "react";
import { Container } from "./styled";
/**
* Componente card que renderiza um psicologo
*
* @param {*} imageUrl - url da image
* @param {*} nome - nome do psicologo
* @param {*} plano - tipo de plano
* @param {*} endereco - nome da rua
*
*/
export default function Card({ imagemUrl, nome, plano, endereco, ...rest }) {
return (
<Container {...rest} type="button">
<img src={imagemUrl} alt="pessoa" />
<h2>{nome}</h2>
<p>
Lorem Ipsum is simply dummy text of the printing and typesetting
industry. Lorem Ipsum has been the industry's standard dummy text ever
since the 1500s, when an unknown printer took a galley of type and
scrambled it to make a type specimen book. It has survived not only five
centuries
</p>
<footer>
<h3>{plano}</h3>
<h4>{endereco}</h4>
</footer>
</Container>
);
}