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

6 lines
186 B
JavaScript

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