diff options
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> + ); +} |
