feat: implement product save functionality with frontend-backend integration

This commit is contained in:
louiscklaw
2025-05-28 12:32:57 +08:00
parent 964ba3e5b0
commit e7b292338b
7 changed files with 217 additions and 6 deletions

View File

@@ -1,7 +1,7 @@
import type FullCalendar from '@fullcalendar/react';
import type { EventResizeDoneArg } from '@fullcalendar/interaction/index.js';
import type { EventDropArg, DateSelectArg, EventClickArg } from '@fullcalendar/core/index.js';
import type { ICalendarView, ICalendarRange, ICalendarEvent } from 'src/types/calendar';
import type { EventDropArg, DateSelectArg, EventClickArg } from '@fullcalendar/core/index.js';
import { useRef, useState, useCallback } from 'react';