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