aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/GolfPlay.tsx
blob: 42e8e5f0256b0db260048a88caf599f4b557946f (plain)
1
2
3
4
5
6
7
8
9
10
import App from "./play/App.tsx";

export default function GolfPlay() {
  return (
    <div>
      <h1>Golf Play</h1>
      <App gameId={0} playerId={0} />
    </div>
  );
}