Spaces:
Running
Running
File size: 317 Bytes
091969f |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
"use client";
import { useQuizz } from "./hooks/useQuizz";
export const LayoutScore = ({ className }: { className?: string }) => {
const { score } = useQuizz();
return (
<p className={`text-white font-extrabold text-xl ${className}`}>
{score ?? 0} point{(score ?? 0) > 1 && "s"} 🎉
</p>
);
};
|