- Reorganizes the components folder into ui, layout, features, shared, and providers for better modularity. - Groups routes in the app folder using a route group (auth). - Updates all imports to reflect the new file structure.
11 lines
306 B
TypeScript
11 lines
306 B
TypeScript
import React, { Suspense } from 'react'
|
|
import ResultadosClient from './ResultadosClient'
|
|
|
|
export default function Page() {
|
|
return (
|
|
<Suspense fallback={<div className="min-h-screen flex items-center justify-center"><span>Carregando...</span></div>}>
|
|
<ResultadosClient />
|
|
</Suspense>
|
|
)
|
|
}
|