/* This file will contain all classes */ export class ItemListBox { constructor() { console.log("ItemListBox is created"); } assignElements(worldData) { this.worldData = worldData; /* array of .id */ } }