minecraft-clone / src /app /page.tsx
TomatitoToho's picture
Upload src/app/page.tsx with huggingface_hub
f4cd1a8 verified
Raw
History Blame Contribute Delete
300 Bytes
'use client'
import dynamic from 'next/dynamic'
// Dynamic import to avoid SSR issues with Three.js
const GameCanvas = dynamic(
() => import('@/components/game/GameCanvas').then(mod => ({ default: mod.GameCanvas })),
{ ssr: false }
)
export default function Home() {
return <GameCanvas />
}