"use client";

import { CdcGpsfDashboardScreen } from "@/features/cdc-gpsf/dashboard/components/cdc-gpsf-dashboard-screen";
import { WorkingGroupActions } from "@/features/ministry/dashboard/components/dashboard-actions";

// Ministry shares the CDC dashboard data and layout, but keeps its own New
// button menu and actions.
export function DashboardScreen() {
  return <CdcGpsfDashboardScreen headerActions={<WorkingGroupActions />} />;
}
