From de8f12d74faef5fa3f9e38d1340948cab2d06ea3 Mon Sep 17 00:00:00 2001 From: Georgios Andreadis Date: Wed, 1 Jul 2020 13:33:31 +0200 Subject: Manually generate IDs --- frontend/src/components/home/TeamSection.js | 101 ++++++++++++++-------------- 1 file changed, 51 insertions(+), 50 deletions(-) (limited to 'frontend/src/components/home/TeamSection.js') diff --git a/frontend/src/components/home/TeamSection.js b/frontend/src/components/home/TeamSection.js index b86655b4..2b7bb69d 100644 --- a/frontend/src/components/home/TeamSection.js +++ b/frontend/src/components/home/TeamSection.js @@ -1,56 +1,57 @@ -import React from "react"; -import ContentSection from "./ContentSection"; +import React from 'react' +import ContentSection from './ContentSection' const TeamMember = ({ photoId, name, description }) => ( -
- {name} -
-

{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; +export default TeamSection -- cgit v1.2.3