10 lines
200 B
TypeScript
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>
|
|
}
|