in src/app/AthenaNetCore/AthenaNetCore.WebApp/ClientApp/src/components/CovidTestingByState.js [39:47]
stateSelectChange(event) {
const selectedState = event.target.value;
if (selectedState !== "--") {
this.setState({ isLoading: true });
this.loadCovidData(selectedState);
} else {
this.setState({ covidTesting: [] });
}
}