Files

6 lines
195 B
TypeScript
Raw Permalink Normal View History

import { AdminShell } from "@/components/ops/layout/AdminShell";
export default function OpsLayout({ children }: { children: React.ReactNode }) {
return <AdminShell>{children}</AdminShell>;
}