import { AdminAppShell } from "@/components/layout/AdminAppShell";

export default function AdminPortalLayout({ children }: { children: React.ReactNode }) {
  return <AdminAppShell>{children}</AdminAppShell>;
}
