"use client";

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

// PSWG uses the shared dashboard data and layout, while keeping its own New
// button menu and actions.
export function WorkingGroupScreen() {
  return <CdcGpsfDashboardScreen headerActions={<WorkingGroupActions />} />;
}
