export type CreateMeetingSummaryRequestItem = {
  id: number;
  title: string;
  pswg: string;
  requestedDate: string;
};

export const createMeetingSummaryRequestItems: CreateMeetingSummaryRequestItem[] =
  [
    {
      id: 1,
      title: "ប្រជុំដោះស្រាយបញ្ហាដែលបានលើកឡើងចំនួន ៣ ",
      pswg: "Agriculture and Agro-Industry",
      requestedDate: "10/09/2025",
    },
    ...Array.from({ length: 9 }, (_, index) => ({
      id: index + 2,
      title: "ប្រជុំដោះស្រាយបញ្ហាដែលបានលើកឡើងចំនួន ៥ ",
      pswg: "Agriculture and Agro-Industry",
      requestedDate: "10/09/2025",
    })),
  ];
