import { useParams } from "react-router"; import { Spinner } from "@/components/ui/spinner"; import { APP_TITLE } from "@/lib/app-config"; import { PlansPage } from "@/pages/PlansPage"; export function meta() { return [ { title: APP_TITLE }, { name: "description", content: "Review an Agent-Native Plan from local MDX files without Plan app database writes.", }, ]; } export function HydrateFallback() { return (
); } export default function LocalPlanRoute() { const params = useParams<{ slug?: string }>(); return ; }