import type { ReactNode } from "react";

import AppShell from "@/app/app-shell";

export default function CefpLayout({ children }: { children: ReactNode }) {
  return <AppShell>{children}</AppShell>;
}
