Spaces:
Running
Running
File size: 323 Bytes
542c765 | 1 2 3 4 5 6 7 8 9 10 11 12 | // OWNER: Member 3
// XP counter — Framer Motion spring animation to current value
export default function XPCounter({ value }: { value: number }) {
// TODO Member 3: implement with useSpring + useTransform
return (
<span className="text-4xl font-bold text-primary tabular-nums">
{value}
</span>
)
}
|