blob: c2184141f7d14ce750da24106780eceb6d7ce62b (
plain)
1
2
3
4
5
6
7
8
9
|
export default function GolfPlayAppFinished() {
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>
);
}
|