@hirebus/academy
Version:
React component library for academy and learning platforms
12 lines (10 loc) • 350 B
TypeScript
import { default as React } from 'react';
interface CourseActionsProps {
courseId: string;
onViewCourse: (courseId: string) => void;
onEditCourse: (courseId: string) => void;
onDeleteCourse: (courseId: string) => void;
isLoadingEditCourse?: boolean;
}
export declare const CourseActions: React.FC<CourseActionsProps>;
export {};