@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
12 lines (11 loc) • 454 B
TypeScript
import { HTMLAttributes } from 'react';
import { SCCourseType } from '@selfcommunity/types';
export interface TeacherCourseDashboardProps {
courseId?: number;
course?: SCCourseType;
className?: HTMLAttributes<HTMLDivElement>['className'];
[p: string]: any;
}
declare function Teacher(inProps: TeacherCourseDashboardProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof Teacher>;
export default _default;