From 75501a670513b1fa55c7b501f2d294838c579b1f Mon Sep 17 00:00:00 2001 From: codydiane87 Date: Thu, 4 Mar 2021 09:28:01 -0800 Subject: [PATCH 1/4] finished problem one --- client/src/App.js | 5 +- client/src/time.js | 16 + package-lock.json | 772 +++++++++++++++++++-------------------------- package.json | 4 +- 4 files changed, 342 insertions(+), 455 deletions(-) create mode 100644 client/src/time.js diff --git a/client/src/App.js b/client/src/App.js index 5288216..41babff 100644 --- a/client/src/App.js +++ b/client/src/App.js @@ -1,10 +1,10 @@ import { useCallback, useEffect, useState } from "react"; import axios from "axios"; - +import Time from './time'; axios.defaults.baseURL = 'http://localhost:5000'; axios.defaults.headers.post['Content-Type'] = 'applicatin/json'; -function App() { +function App() { const [palindromeList, setPalindromList] = useState([]); const loadList = useCallback(async (abortToken) => { @@ -33,6 +33,7 @@ function App() {

This is the bootcamp final.

+