Display error when game not found

This commit is contained in:
Gavin McDonald
2025-04-15 08:56:10 -04:00
parent 6359784f3b
commit 00e878282b
5 changed files with 57 additions and 16 deletions

View File

@@ -1,6 +1,7 @@
'use client';
import { useRouter } from 'next/navigation';
import { socket } from '@/socket';
import { useRouter } from 'next/navigation';
import { GameUpdate } from '@/types';
export default function Home() {