-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
#14 Setting info of members as a link to github and adding phrases to…
… each member
- Loading branch information
CalebeRios
committed
Aug 22, 2018
1 parent
bb83f64
commit 5a65b83
Showing
3 changed files
with
40 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -16,56 +16,65 @@ class Home extends Component { | |
{ | ||
img: "amanda.jpeg", | ||
name: "Amanda Muniz", | ||
git: "@AmandaMuniz", | ||
email: "[email protected]" | ||
git: "AmandaMuniz", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "bruno.jpeg", | ||
name: "Bruno Dantas", | ||
git: "@brunooliveiradantas", | ||
email: "[email protected]" | ||
git: "brunooliveiradantas", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "calebe.jpeg", | ||
name: "Calebe Rios", | ||
git: "@caleberios", | ||
email: "[email protected]" | ||
git: "caleberios", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "indiara.jpeg", | ||
name: "Indiara Duarte", | ||
git: "@inddiara", | ||
email: "[email protected]" | ||
git: "inddiara", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "isaque.jpeg", | ||
name: "Isaque Alves", | ||
git: "@alvesisaque", | ||
email: "[email protected]" | ||
git: "alvesisaque", | ||
email: "[email protected]", | ||
frase: '"Cria uma issue."' | ||
}, | ||
{ | ||
img: "joao.jpg", | ||
name: "João Vitor", | ||
git: "@joaovitor3", | ||
email: "[email protected]" | ||
git: "joaovitor3", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "luciana.jpeg", | ||
name: "Luciana", | ||
git: "@lucianaribeiro", | ||
email: "[email protected]" | ||
name: "Luciana Ribeiro", | ||
git: "lucianaribeiro", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "martha.jpg", | ||
name: "Martha Dantas", | ||
git: "@MarthaDs", | ||
email: "[email protected]" | ||
git: "MarthaDs", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
}, | ||
{ | ||
img: "vitor.jpeg", | ||
name: "Vitor Cardoso", | ||
git: "@vitorcx", | ||
email: "[email protected]" | ||
git: "vitorcx", | ||
email: "[email protected]", | ||
frase: '"FRASE"' | ||
} | ||
]; | ||
|
||
|
@@ -124,6 +133,7 @@ class Home extends Component { | |
name={member.name} | ||
git={member.git} | ||
email={member.email} | ||
frase={member.frase} | ||
/> | ||
); | ||
})} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters