displaying BatchcodeByCountryBarChart

This commit is contained in:
frankknoll
2023-06-07 17:16:56 +02:00
parent c68499fde5
commit 5050a4b9c5
5 changed files with 320 additions and 72 deletions

View File

@@ -0,0 +1,7 @@
class BarChartDescriptionProvider {
static getBarChartDescription(batchcode) {
return fetch(`data/barChartDescriptionTables/${batchcode}.json`)
.then(response => response.json());
}
}