mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-12 08:46:02 +00:00
16 lines
262 B
TypeScript
16 lines
262 B
TypeScript
|
|
|
|
import React from 'react';
|
|
|
|
export default function LoginLayout({
|
|
children,
|
|
}: Readonly<{
|
|
children: React.ReactNode;
|
|
}>) {
|
|
return (
|
|
<div className="min-h-screen bg-background">
|
|
<main className="min-h-screen">{children}</main>
|
|
</div>
|
|
);
|
|
}
|