WIP - Information for locations.

Better configuration menu.
Testing retrieving JSON from GitHub (uploading).
This commit is contained in:
2022-10-15 18:46:49 +02:00
parent fa25e3c983
commit 9098f42a93
13 changed files with 388 additions and 72 deletions
+7
View File
@@ -0,0 +1,7 @@
export default class StringUtil {
static capitalizeFirstLetter(string) {
return string[0].toUpperCase() + string.slice(1);
}
}