socket.io works
This commit is contained in:
24
app/page.tsx
Normal file
24
app/page.tsx
Normal file
@@ -0,0 +1,24 @@
|
||||
'use client';
|
||||
import { useRouter } from 'next/navigation';
|
||||
//import generateID from '@/tools/simpleID';
|
||||
|
||||
export default function Home() {
|
||||
const router = useRouter();
|
||||
|
||||
const handleCreateGame = () => {
|
||||
const id = 'abc123'; //generateID();
|
||||
router.push(`/${id}`);
|
||||
};
|
||||
|
||||
return (
|
||||
<main className="min-h-screen flex items-center justify-center">
|
||||
<button
|
||||
onClick={handleCreateGame}
|
||||
className="bg-blue-600 text-white text-lg px-6 py-3 rounded-xl shadow hover:bg-blue-700 transition"
|
||||
>
|
||||
Create New Game
|
||||
</button>
|
||||
</main>
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user