import type { Metadata } from "next";

import { IssueMatrixScreen } from "@/features/pswg/issue-matrix/components/issue-matrix-screen";

export const metadata: Metadata = {
  title: "Issue matrix",
};

// CDC-GPSF sees the same view-only issue matrix as PSWG. Row links stay
// inside the CDC-GPSF section; the Export button shows only when the user's
// role has the "export IssueMatrix" permission.
export default function CdcGpsfIssueMatrixPage() {
  return <IssueMatrixScreen detailBasePath="/cdc-gpsf/issue-matrix" />;
}
