From a5d05db93017d6bc6727c7bc11deb4a555de315a Mon Sep 17 00:00:00 2001 From: Galen Guyer Date: Sat, 14 Nov 2020 14:21:44 -0500 Subject: add History and totalstudent cases graph --- src/App.js | 48 ++++++++++++++++++++++++++++++++---------------- 1 file changed, 32 insertions(+), 16 deletions(-) (limited to 'src/App.js') diff --git a/src/App.js b/src/App.js index e456b5c..b1d1dd1 100644 --- a/src/App.js +++ b/src/App.js @@ -1,6 +1,8 @@ import useSWR from "swr"; import { DateTime } from "luxon"; +import { BrowserRouter, Route, Switch } from "react-router-dom"; import MainPage from "./MainPage"; +import History from "./History"; import "./App.css"; const url = "https://rcpoller.galenguyer.com/api/v0/history"; @@ -29,22 +31,36 @@ function App() { const lastUpdate = DateTime.fromSQL(latest.last_updated, { zone: "UTC" }).setZone(local); return ( -
-

RIT Covid Dashboard

-

- Last Updated:{" "} - {lastUpdate.toLocaleString({ - weekday: "long", - month: "long", - day: "2-digit", - hour: "2-digit", - minute: "2-digit", - })} -

-
-
- -
+ +
+

RIT Covid Dashboard

+

+ Last Updated:{" "} + {lastUpdate.toLocaleString({ + weekday: "long", + month: "long", + day: "2-digit", + hour: "2-digit", + minute: "2-digit", + })} +

+
+
+ + + {" "} + + + { + return { value: d.total_students, date: d.last_updated }; + })} + /> + + +
+
); } -- cgit v1.2.3