Games tab on admin page working

This commit is contained in:
2025-03-04 21:14:24 -05:00
parent 91800574e4
commit ffe51d6fbb
17 changed files with 700 additions and 27 deletions

View File

@@ -1,5 +1,6 @@
import TabGroup, { Tab } from "@/components/tab/TabGroup";
import AccountsLoader from "@/ui/account/AccountsLoader";
import GamesLoader from "@/ui/game/GamesLoader";
export default function AdminPage(){
@@ -7,6 +8,10 @@ export default function AdminPage(){
{
tabHeader: "Accounts",
tabContent: <AccountsLoader/>
},
{
tabHeader: "Games",
tabContent: <GamesLoader/>
}
];