mirror of
https://github.com/langbot-app/LangBot.git
synced 2026-06-08 14:56:03 +00:00
14 lines
260 B
TypeScript
14 lines
260 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>
|
|
);
|
|
}
|