Files
HowBadIsMyBatch/docs/SymptomsCausedByVaccines/js/PrrByVaccineProvider.js
2023-10-13 20:07:13 +02:00

6 lines
195 B
JavaScript

class PrrByVaccineProvider {
static getPrrByVaccine(symptom) {
return fetch(`../data/ProportionalReportingRatios/symptoms/${symptom}.json`).then(response => response.json());
}
}