From 751a9ef3a12c952fe179f256d854d0c4aa37e28e Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 4 Oct 2017 22:49:07 +0200 Subject: Apply prettier to codebase --- src/components/home/TeamSection.js | 80 ++++++++++++++++++++++---------------- 1 file changed, 47 insertions(+), 33 deletions(-) (limited to 'src/components/home/TeamSection.js') diff --git a/src/components/home/TeamSection.js b/src/components/home/TeamSection.js index f9ca3105..f29003f7 100644 --- a/src/components/home/TeamSection.js +++ b/src/components/home/TeamSection.js @@ -1,43 +1,57 @@ import React from "react"; import ContentSection from "./ContentSection"; -const TeamMember = ({photoId, name, description}) => ( -
- {name}/ -
-

{name}

-
- {description} -
-
+const TeamMember = ({ photoId, name, description }) => ( +
+ {name} +
+

{name}

+
{description}
+
); const TeamSection = () => ( - -
- - - - -
-
- See - {" "} - - atlarge.science/opendc - - {" "} - for the full team! -
-
+ +
+ + + + +
+
+ See{" "} + + atlarge.science/opendc + {" "} + for the full team! +
+
); export default TeamSection; -- cgit v1.2.3