FPSMS-frontend
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

12345678910111213141516
  1. "use client";
  2. import {
  3. fetchTruckScheduleDashboard,
  4. type TruckScheduleDashboardItem
  5. } from "./actions";
  6. export const fetchTruckScheduleDashboardClient = async (date?: string): Promise<TruckScheduleDashboardItem[]> => {
  7. return await fetchTruckScheduleDashboard(date);
  8. };
  9. export type { TruckScheduleDashboardItem };
  10. export default fetchTruckScheduleDashboardClient;