Neah/app/signin/layout.tsx
2025-04-17 11:39:15 +02:00

7 lines
118 B
TypeScript

export default function SignInLayout({
children,
}: {
children: React.ReactNode;
}) {
return <>{children}</>;
}