aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/GolfPlay.tsx
blob: 3cc7d65e689e3544d5055413fc5d39cbb151bd5e (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>
  );
};