class ItemListBox

This commit is contained in:
ReznoRMichael 2021-10-29 11:50:27 +02:00
parent 83aaa02994
commit 24ef767f48
2 changed files with 6 additions and 5 deletions

View file

@ -1,5 +0,0 @@
class ItemListBox {
constructor() {
}
}

6
src/js/page.js Normal file
View file

@ -0,0 +1,6 @@
/* This file will contain all classes and functions for creating things on the page */
class ItemListBox {
constructor() {
console.log("ItemListBox is being created");
}
}