import type { ReactNode } from "react"; export default function PacientesLayout({ children }: { children: ReactNode }) { return <>{children}; }