import React from "react";
import Card from "./Card";
const MainPage = (props) => {
const latest = props.latest;
const prior = props.prior;
return (
<>
Alert Level: {latest.alert_level.charAt(0).toUpperCase() + latest.alert_level.slice(1)}
(Yesterday: {prior.alert_level.charAt(0).toUpperCase() + prior.alert_level.slice(1)})
Total Positive Cases Since August 19 (First Day of Classes)
New Positive Cases From Past 14 Days
Number of Students in Quarantine
Quarantine separates and restricts the movement of people who were exposed to a contagious disease
to see if they become sick.
Number of Students in Isolation
Isolation separates sick people with a contagious disease from people who are not sick.
Number of Tests Administered by Student Health Center
Quarantine/Isolation Bed Availability On-campus
>
);
};
export default MainPage;