aboutsummaryrefslogtreecommitdiffhomepage
path: root/frontend/src/routes/golf/GolfPlay.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'frontend/src/routes/golf/GolfPlay.tsx')
-rw-r--r--frontend/src/routes/golf/GolfPlay.tsx10
1 files changed, 10 insertions, 0 deletions
diff --git a/frontend/src/routes/golf/GolfPlay.tsx b/frontend/src/routes/golf/GolfPlay.tsx
new file mode 100644
index 0000000..3cc7d65
--- /dev/null
+++ b/frontend/src/routes/golf/GolfPlay.tsx
@@ -0,0 +1,10 @@
+import App from './play/App.tsx';
+
+export default function GolfPlay() {
+ return (
+ <div>
+ <h1>Golf Play</h1>
+ <App gameId={0} playerId={0} />
+ </div>
+ );
+};