2025-04-17 13:04:04 +00:00
|
|
|
import { Suspense } from "react";
|
|
|
|
|
|
2025-01-23 15:30:33 +00:00
|
|
|
export default function AuthLayout({
|
|
|
|
|
children,
|
|
|
|
|
}: {
|
|
|
|
|
children: React.ReactNode;
|
|
|
|
|
}) {
|
2025-04-17 13:04:04 +00:00
|
|
|
return <Suspense> {children}</Suspense>;
|
2025-01-23 15:30:33 +00:00
|
|
|
}
|