Finished megawalls general stats

This commit is contained in:
2025-09-07 18:09:14 +02:00
parent 33d02113da
commit aa552a9142
3 changed files with 52 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import { getDifficultyColor, getMostPlayed } from "@/lib/hypixel/megawalls/gener
import { NonNullStats } from "@/lib/schema/player"
import { cn } from "@/lib/utils"
import CollapsedStats from "../../_components/CollapsedStats"
import MegaWallsGeneralStats from "./stats"
export default function MegaWallsStats({ stats }: { stats: NonNullStats["MegaWalls"] }) {
if (!stats) return null
@@ -56,6 +57,8 @@ export default function MegaWallsStats({ stats }: { stats: NonNullStats["MegaWal
</AccordionTrigger>
<AccordionContent>
<Separator className="my-4" />
<MegaWallsGeneralStats stats={stats} />
<Separator className="my-4" />
</AccordionContent>
</CardContent>
</Card>