6 lines
186 B
JavaScript
6 lines
186 B
JavaScript
class PrrByVaccineProvider {
|
|
|
|
static getPrrByVaccine(symptom) {
|
|
return fetch(`../data/ProportionalReportingRatios/${symptom}.json`).then(response => response.json());
|
|
}
|
|
} |