admin widget , register user

This commit is contained in:
2026-01-08 17:46:59 +01:00
parent 14e8d2e9cb
commit eef0c35134
3 changed files with 97 additions and 11 deletions

View File

@@ -4,6 +4,7 @@ import ChatWidget from "./widget/chatWidget"
import InventoryWidget from "./widget/inventoryWidget";
import "./MainApp.css"
import AdminWidget from "./widget/adminWidget";
export default function MainAppWrapper({resClientId}) {
const accessToken = localStorage.getItem("access_tokens");
@@ -31,10 +32,11 @@ function MainApp() {
<h2>Dashboard</h2>
<section className="main">
<AdminWidget/>
<RoomWidget roomlist={rooms}/>
<ChatWidget convlist={conversations}/>
<InventoryWidget/>
<AdminWidget/>
</section>
</div>
);