@hirebus/academy
Version:
React component library for academy and learning platforms
16 lines (14 loc) • 577 B
TypeScript
import { Course, CourseStatus } from '../../types/course';
import { default as React } from 'react';
interface CourseManagementCardListProps {
courses: Course[];
onViewCourse: (courseId: string) => void;
onEditCourse: (courseId: string) => void;
onDeleteCourse: (courseId: string) => void;
onToggleCourseStatus: (courseId: string, status: CourseStatus) => void;
isLoading?: boolean;
loadingEditingCourseId?: string | null;
className?: string;
}
export declare const CourseManagementCardList: React.FC<CourseManagementCardListProps>;
export {};