Files
hypixel-stats/src/app/(stats)/quests/[ign]/_client.tsx
2025-09-08 23:52:53 +02:00

10 lines
200 B
TypeScript

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