mirror of
https://github.com/chillpadclub/bedolaga-cabinet.git
synced 2026-07-30 02:23:47 +00:00
- PageLoader: remove bg-dark-950, use transparent background - AdminLayout: remove motion animations - Now lazy-loaded pages show Aurora background during loading
15 lines
366 B
TypeScript
15 lines
366 B
TypeScript
import type { ReactNode } from 'react';
|
|
|
|
interface AdminLayoutProps {
|
|
children: ReactNode;
|
|
className?: string;
|
|
}
|
|
|
|
/**
|
|
* AdminLayout - wrapper for all admin pages.
|
|
* Animations removed to prevent black flash during transitions.
|
|
*/
|
|
export function AdminLayout({ children, className }: AdminLayoutProps) {
|
|
return <div className={className}>{children}</div>;
|
|
}
|