web-humas-fe/app/setup-password/layout.tsx

10 lines
168 B
TypeScript
Raw Normal View History

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