Files
PolyWeather/frontend/app/ops/layout.tsx
T

6 lines
195 B
TypeScript

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