Raid groups page working

This commit is contained in:
2025-03-06 23:54:26 -05:00
parent 6c80becf71
commit 61789d7ca2
8 changed files with 307 additions and 17 deletions

View File

@@ -1,10 +1,27 @@
import { useAuth } from "@/providers/AuthProvider";
import RaidGroupsByAccountDisplay from "@/ui/raidGroup/RaidGroupsByAccountDisplay";
export default function RaidGroupsPage(){
//TODO:
const { accountId } = useAuth();
return (
<div>
Raid Groups Page
</div>
<main
className="flex flex-col items-center justify-center gap-8"
>
<h1
className="text-4xl"
>
Raid Groups
</h1>
<div
className="w-full"
>
<RaidGroupsByAccountDisplay
accountId={accountId ?? ""}
/>
</div>
</main>
);
}