Renamed components

This commit is contained in:
2025-09-12 12:11:19 +02:00
parent c686be44e6
commit 66277a90dc
9 changed files with 54 additions and 16 deletions

View File

@@ -7,6 +7,7 @@ import GeneralStats from "../GeneralStats"
import { WoolGamesCaptureTheWool, WoolGamesSheepWars, WoolGamesWoolWars } from "./modes"
import WoolGamesProgress from "./progress"
import WoolGamesGeneralStats from "./stats"
import WoolGamesStatTable from "./table"
export default function WoolGamesStats({ stats }: { stats: NonNullStats["WoolGames"] }) {
if (!stats) return null
@@ -47,6 +48,8 @@ export default function WoolGamesStats({ stats }: { stats: NonNullStats["WoolGam
<Separator className="my-4" />
<WoolGamesWoolWars ww={stats.wool_wars} />
<Separator className="my-4" />
<WoolGamesStatTable stats={stats} />
<Separator className="my-4" />
</GeneralStats>
)
}