in src/app/AthenaNetCore/AthenaNetCore.WebApp/ClientApp/src/components/CovidTestingByDate.js [41:49]
stateSelectChange(event) {
const selectedDate = event.target.value;
if (selectedDate !== "") {
this.setState({ isLoading: true });
this.loadCovidData(selectedDate);
} else {
this.setState({ covidTesting: [] });
}
}