15 lines
346 B
TypeScript
15 lines
346 B
TypeScript
import { AdminShell } from "@/components/admin/admin-shell";
|
|
import { AdminShellAuthGate } from "@/components/admin/admin-shell-auth-gate";
|
|
|
|
export default function AdminShellLayout({
|
|
children,
|
|
}: {
|
|
children: React.ReactNode;
|
|
}) {
|
|
return (
|
|
<AdminShellAuthGate>
|
|
<AdminShell>{children}</AdminShell>
|
|
</AdminShellAuthGate>
|
|
);
|
|
}
|