starting to add batch code heading

This commit is contained in:
Frank Knoll
2024-04-24 14:21:23 +02:00
parent 618fd89e7f
commit b0ec2683bc
3 changed files with 9706 additions and 129 deletions

View File

@@ -0,0 +1,8 @@
class CompanyByBatchcodeProvider {
static getCompany(batchcode) {
return fetch(`data/histograms/Global/${batchcode}.json`)
.then(response => response.json())
.then(histoDescrs => histoDescrs.Company);
}
}