From 9db48e6940652ad86f9615880b25c37c87dfb25b Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Sat, 15 Feb 2025 22:16:05 +0100 Subject: [PATCH] Rename Score to Stats --- client/src/components/Stats/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/client/src/components/Stats/index.tsx b/client/src/components/Stats/index.tsx index 50b6443..564e937 100644 --- a/client/src/components/Stats/index.tsx +++ b/client/src/components/Stats/index.tsx @@ -7,7 +7,7 @@ type StatsProps = { loaded: boolean; } -function Score({ loaded }: StatsProps) { +function Stats({ loaded }: StatsProps) { const { timer, score, @@ -25,4 +25,4 @@ function Score({ loaded }: StatsProps) { ) } -export default Score; +export default Stats;