11 lines
264 B
JavaScript
11 lines
264 B
JavaScript
|
|
import { useTheme } from '../lib/theme-context';
|
||
|
|
|
||
|
|
export default function AuthLayout({ children }) {
|
||
|
|
const { theme } = useTheme();
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div className="min-h-screen" style={{ backgroundColor: 'var(--bg-primary)' }}>
|
||
|
|
{children}
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|