diff options
Diffstat (limited to 'react-frontend/src/App.js')
-rw-r--r-- | react-frontend/src/App.js | 9 |
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> |