From 172b6d3211d040e8d577afda80debce583c3bf7c Mon Sep 17 00:00:00 2001 From: nsfisis Date: Sat, 15 Mar 2025 23:07:40 +0900 Subject: feat(frontend): show loaing screen --- frontend/app/components/GolfPlayApp.tsx | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) (limited to 'frontend/app/components/GolfPlayApp.tsx') diff --git a/frontend/app/components/GolfPlayApp.tsx b/frontend/app/components/GolfPlayApp.tsx index e8fafbd..0bb66eb 100644 --- a/frontend/app/components/GolfPlayApp.tsx +++ b/frontend/app/components/GolfPlayApp.tsx @@ -20,6 +20,7 @@ import { } from "../states/play"; import GolfPlayAppFinished from "./GolfPlayApps/GolfPlayAppFinished"; import GolfPlayAppGaming from "./GolfPlayApps/GolfPlayAppGaming"; +import GolfPlayAppLoading from "./GolfPlayApps/GolfPlayAppLoading"; import GolfPlayAppStarting from "./GolfPlayApps/GolfPlayAppStarting"; import GolfPlayAppWaiting from "./GolfPlayApps/GolfPlayAppWaiting"; @@ -111,7 +112,9 @@ export default function GolfPlayApp({ game, player, initialCode }: Props) { setLatestGameState, ]); - if (gameStateKind === "waiting") { + if (gameStateKind === "loading") { + return ; + } else if (gameStateKind === "waiting") { return ( ; - } else { - return null; } } -- cgit v1.2.3-70-g09d2