import DataStateSkeleton from '@/components/helper/skeleton/DataStateSkeleton'; import Table from '@/components/Table'; import { InventoryAdjustment } from '@/types/api/inventory/adjustment'; import { ColumnDef } from '@tanstack/react-table'; const InventoryAdjustmentTableSkeleton = ({ columns, icon, title = 'No Data Available', subtitle = 'There is no inventory adjustment data displayed. Enter inventory adjustment data to get started.', }: { columns: ColumnDef[]; icon: React.ReactNode; title?: string; subtitle?: string; }) => { return (
); }; export default InventoryAdjustmentTableSkeleton;