Removed pages/api/create-user.ts and pages/api/signin-user.ts; added app/resultados/ResultadosClient.tsx and updated app/resultados/page.tsx. Fixes route conflict and build error (useSearchParams used in server component).
11 lines
260 B
TypeScript
11 lines
260 B
TypeScript
import React, { Suspense } from 'react'
|
|
import ResultadosClient from './ResultadosClient'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Suspense fallback={<div className="min-h-screen">Carregando...</div>}>
|
|
<ResultadosClient />
|
|
</Suspense>
|
|
)
|
|
}
|