From 24ef767f48657eef9f2370018164c78ab1a72f6d Mon Sep 17 00:00:00 2001 From: ReznoRMichael Date: Fri, 29 Oct 2021 11:50:27 +0200 Subject: [PATCH] class ItemListBox --- src/js/ItemListBox.js | 5 ----- src/js/page.js | 6 ++++++ 2 files changed, 6 insertions(+), 5 deletions(-) delete mode 100644 src/js/ItemListBox.js create mode 100644 src/js/page.js diff --git a/src/js/ItemListBox.js b/src/js/ItemListBox.js deleted file mode 100644 index 83c2a06..0000000 --- a/src/js/ItemListBox.js +++ /dev/null @@ -1,5 +0,0 @@ -class ItemListBox { - constructor() { - - } -} \ No newline at end of file diff --git a/src/js/page.js b/src/js/page.js new file mode 100644 index 0000000..4a5a4cb --- /dev/null +++ b/src/js/page.js @@ -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"); + } +} \ No newline at end of file