simple get inventory

This commit is contained in:
2026-01-02 14:17:44 +01:00
parent 69115486ed
commit ab27bcb5bc
6 changed files with 92 additions and 26 deletions

View File

@@ -1,6 +1,7 @@
import { HotelProvider, useHotel } from "./HotelContext";
import RoomWidget from "./widget/roomWidget"
import ChatWidget from "./widget/chatWidget"
import InventoryWidget from "./widget/inventoryWidget";
import "./MainApp.css"
@@ -32,6 +33,7 @@ function MainApp() {
<RoomWidget roomlist={rooms}/>
<ChatWidget convlist={conversations}/>
<InventoryWidget/>
</section>
</div>