sinka/web/src/app/admin/(panel)/layout.tsx
armando cf16bf1fb6 Show integration health in the admin and keep clients on their own screen.
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-09-16 03:43:18 -03:00

7 lines
280 B
TypeScript

import { RestrictedShell } from "@/components/restricted-shell";
import type { ReactNode } from "react";
export default function AdminPanelLayout({ children }: { children: ReactNode }) {
return <RestrictedShell kind="platform" basePath="/admin">{children}</RestrictedShell>;
}