diff options
| author | nsfisis <nsfisis@gmail.com> | 2025-03-15 23:07:40 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2025-03-15 23:07:40 +0900 |
| commit | 172b6d3211d040e8d577afda80debce583c3bf7c (patch) | |
| tree | e62023aebb0924e8ad63c37e2d22f0a50a299eff /frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx | |
| parent | c2e23841f446489c4d9b7d2b616f3de249159f5f (diff) | |
| download | phperkaigi-2025-albatross-172b6d3211d040e8d577afda80debce583c3bf7c.tar.gz phperkaigi-2025-albatross-172b6d3211d040e8d577afda80debce583c3bf7c.tar.zst phperkaigi-2025-albatross-172b6d3211d040e8d577afda80debce583c3bf7c.zip | |
feat(frontend): show loaing screen
Diffstat (limited to 'frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx')
| -rw-r--r-- | frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx b/frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx new file mode 100644 index 0000000..7169d24 --- /dev/null +++ b/frontend/app/components/GolfWatchApps/GolfWatchAppLoading.tsx @@ -0,0 +1,9 @@ +export default function GolfWatchAppLoading() { + return ( + <div className="min-h-screen bg-gray-100 flex items-center justify-center"> + <div className="text-center"> + <div className="text-6xl font-bold text-black">読込中</div> + </div> + </div> + ); +} |
