Files
hypixel-stats/src/app/(stats)/player/[ign]/_client.tsx
2025-09-08 19:49:05 +02:00

10 lines
200 B
TypeScript

"use client"
import { usePathname } from "next/navigation"
export function PlayerPageLoadText() {
const path = usePathname()
return <p>{`Loading stats for ${path.split("/").at(-1)}`}</p>
}