Files
ContentGen_FE/src/app/[locale]/(auth)/layout.tsx
Harun CAN d8f9865dcf
Some checks failed
UI Deploy (Next-Auth Support) 🎨 / build-and-deploy (push) Has been cancelled
main
2026-04-05 17:29:01 +03:00

12 lines
272 B
TypeScript

'use client';
function AuthLayout({ children }: { children: React.ReactNode }) {
return (
<div style={{ minHeight: '100vh', display: 'flex', flexDirection: 'column' }}>
<main style={{ flex: 1 }}>{children}</main>
</div>
);
}
export default AuthLayout;