Added mw modes table

This commit is contained in:
2025-09-07 18:38:17 +02:00
parent aa552a9142
commit e0a54114d0
4 changed files with 142 additions and 2 deletions

View File

@@ -8,6 +8,7 @@ import { NonNullStats } from "@/lib/schema/player"
import { cn } from "@/lib/utils"
import CollapsedStats from "../../_components/CollapsedStats"
import MegaWallsGeneralStats from "./stats"
import { MegaWallsClassesTable, MegaWallsModesTable } from "./table"
export default function MegaWallsStats({ stats }: { stats: NonNullStats["MegaWalls"] }) {
if (!stats) return null
@@ -59,6 +60,10 @@ export default function MegaWallsStats({ stats }: { stats: NonNullStats["MegaWal
<Separator className="my-4" />
<MegaWallsGeneralStats stats={stats} />
<Separator className="my-4" />
<MegaWallsClassesTable stats={stats} />
<Separator className="my-4" />
<MegaWallsModesTable stats={stats} />
<Separator className="my-4" />
</AccordionContent>
</CardContent>
</Card>