From 3c51937c2e98d8d2840d03dafc1388948cee3876 Mon Sep 17 00:00:00 2001 From: Adrian Duong Date: Thu, 20 May 2021 21:31:01 -0700 Subject: [PATCH] Frontend: Import images --- frontend/src/App.js | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/frontend/src/App.js b/frontend/src/App.js index cc3f36e..00df3a6 100644 --- a/frontend/src/App.js +++ b/frontend/src/App.js @@ -1,11 +1,15 @@ import React, {useEffect, useState} from 'react'; + +import LogoIcon from "./images/logo-icon.svg"; +import CheckIcon from "./images/group_4949.svg"; + import './App.css'; const baseUrl = 'https://' + process.env.REACT_APP_API_HOST + '.onrender.com' const ListItem = ({ title }) => { return ( -
+

{title}

) @@ -58,7 +62,7 @@ function App() {
-
+
Powered by Render

Todo List

@@ -85,4 +89,4 @@ function App() { ) } -export default App; \ No newline at end of file +export default App;