displaying PrrByVaccineTable

This commit is contained in:
frankknoll
2023-10-12 10:36:07 +02:00
parent aed6d1380a
commit b3192214fe
6 changed files with 17872 additions and 17470 deletions

View File

@@ -0,0 +1,6 @@
class PrrByVaccineProvider {
static getPrrByVaccine(symptom) {
return fetch(`../data/ProportionalReportingRatios/${symptom}.json`).then(response => response.json());
}
}