import Card from "../components/Card"; import GoatCounter from "../components/GoatCounter"; import "./Index.css"; const Index = (props) => { const response = props.response; if (response.loading) { return
Loading...
; } const data = response.data; const latest = data[data.length - 1]; const prior = data[data.length - (1 + props.timeDifference)]; return (
This dashboard has been refreshed for the new semester. Historical data from the 2020-2021 school year is available at 2020.ritcoviddashboard.com. Data from the Fall 2021 semester is available at{" "} 2021.ritcoviddashboard.com.
Total Positive Cases Since January 10 (First Day of Classes)
New Positive Cases From Past 14 Days
); }; export default Index;