From 1be6007f81488d0f186b44994fe8ee23385059a1 Mon Sep 17 00:00:00 2001 From: nsfisis Date: Thu, 1 Aug 2024 02:02:04 +0900 Subject: feat(frontend): add minimal styling to game pages --- .../components/GolfWatchApps/GolfWatchAppStarting.tsx | 18 +++++++++++++----- 1 file changed, 13 insertions(+), 5 deletions(-) (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx') diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx index 643af93..3c9919c 100644 --- a/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppStarting.tsx @@ -1,7 +1,15 @@ -export default function GolfWatchAppStarting({ - timeLeft, -}: { +type Props = { timeLeft: number; -}) { - return
Starting... ({timeLeft} s)
; +}; + +export default function GolfWatchAppStarting({ timeLeft }: Props) { + return ( +
+
+

+ Starting... ({timeLeft} s) +

+
+
+ ); } -- cgit v1.2.3-70-g09d2