mirror of
https://github.com/i701/sarlink-portal.git
synced 2025-06-13 04:56:20 +00:00
All checks were successful
Build and Push Docker Images / Build and Push Docker Images (push) Successful in 5m39s
11 lines
229 B
TypeScript
11 lines
229 B
TypeScript
|
|
export default function AuthLayout({
|
|
children,
|
|
}: { children: React.ReactNode }) {
|
|
return (
|
|
<div className="bg-gray-100 dark:bg-black w-full h-screen flex items-center justify-center font-sans">
|
|
{children}
|
|
</div>
|
|
);
|
|
}
|