7 lines
212 B
JavaScript
7 lines
212 B
JavaScript
class BarChartDescriptionProvider {
|
|
|
|
static getBarChartDescription(batchcode) {
|
|
return fetch(`data/barChartDescriptionTables/${batchcode}.json`)
|
|
.then(response => response.json());
|
|
}
|
|
} |