| 'use client'; | |
| import { AuthWrapper } from '@/components/auth-wrapper'; | |
| import { Suspense } from 'react'; | |
| export default function Home() { | |
| return ( | |
| <Suspense fallback={<div>Loading...</div>}> | |
| <AuthWrapper /> | |
| </Suspense> | |
| ); | |
| } | |
| 'use client'; | |
| import { AuthWrapper } from '@/components/auth-wrapper'; | |
| import { Suspense } from 'react'; | |
| export default function Home() { | |
| return ( | |
| <Suspense fallback={<div>Loading...</div>}> | |
| <AuthWrapper /> | |
| </Suspense> | |
| ); | |
| } | |