aboutsummaryrefslogtreecommitdiff
path: root/react-frontend/src/App.js
diff options
context:
space:
mode:
author9308233900 <reagan_hunt@brown.edu>2021-04-20 10:24:29 -0700
committer9308233900 <reagan_hunt@brown.edu>2021-04-20 10:24:29 -0700
commit564295d2ac6b40e349a1cbc3e3bd329989e9ec82 (patch)
treee592630d0bfca824f439789221e17ede481c4282 /react-frontend/src/App.js
parentf0866fc8c35b2124d1690ff83fc6a55c3e720eda (diff)
team pics
Diffstat (limited to 'react-frontend/src/App.js')
-rw-r--r--react-frontend/src/App.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/react-frontend/src/App.js b/react-frontend/src/App.js
index a639edd..2cef235 100644
--- a/react-frontend/src/App.js
+++ b/react-frontend/src/App.js
@@ -2,6 +2,9 @@
import React, {useEffect, useState} from 'react';
import WatchDogs from './components/WatchDogs.js';
import reagan from './images/reagan.png';
+import julia from './images/julia.jpg';
+import clark from './images/clark.png';
+import michael from './images/michael.jpg';
import previewwatchdog from './images/previewwatchdog.png';
import mainlogo from './images/mainlogo.png';
@@ -98,21 +101,21 @@ function App() {
<div id="people-holder">
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={clark} height="100%"></img>
</div>
<p class="team-text">Clark Oh-Willeke</p>
</div>
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={julia} height="100%"></img>
</div>
<p class="team-text">Julia McCauley</p>
</div>
<div class="team-person-holder">
<div class="team-person">
- <img src="" height="100%"></img>
+ <img src={michael} height="100%"></img>
</div>
<p class="team-text">Michael Foiani</p>
</div>