continuing

This commit is contained in:
frankknoll
2023-11-07 12:21:15 +01:00
parent a16478d225
commit 3d5f049965
9 changed files with 459 additions and 0 deletions

View File

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