Added table

This commit is contained in:
2025-09-01 21:55:00 +02:00
parent 6e31a2e0e1
commit c2a22471b6
2 changed files with 40 additions and 0 deletions

View File

@@ -7,6 +7,7 @@ import { romanize } from "@/lib/hypixel/general"
import { NonNullStats } from "@/lib/schema/player"
import CollapsedStats from "../../_components/CollapsedStats"
import DuelsGeneralStats from "./stats"
import DuelsStatsTable from "./table"
export default function DuelsStats({ stats }: { stats: NonNullStats["Duels"] }) {
if (!stats) return null
@@ -70,6 +71,7 @@ export default function DuelsStats({ stats }: { stats: NonNullStats["Duels"] })
<Separator className="my-4" />
<DuelsGeneralStats statsChecked={stats} div={div} kd={kd} wl={wl} />
<Separator className="my-4" />
<DuelsStatsTable stats={stats} />
</AccordionContent>
</CardContent>
</Card>