import type { ReactNode } from "react";

/** No static / full-route cache for `/leads` — always request-time rendering for this segment tree. */
export const dynamic = "force-dynamic";
export const fetchCache = "force-no-store";

export default function LeadsLayout({ children }: { children: ReactNode }) {
  return children;
}
