6 lines
178 B
JavaScript
6 lines
178 B
JavaScript
class BarChartDescriptionsProvider {
|
|
|
|
static getBarChartDescriptions() {
|
|
return fetch('data/barChartDescriptionTable.json').then(response => response.json());
|
|
}
|
|
} |