Files
HowBadIsMyBatch/docs/BarChartDescriptionProvider.js
2023-06-07 17:16:56 +02:00

7 lines
212 B
JavaScript

class BarChartDescriptionProvider {
static getBarChartDescription(batchcode) {
return fetch(`data/barChartDescriptionTables/${batchcode}.json`)
.then(response => response.json());
}
}