UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

12 lines (11 loc) 454 B
import { HTMLAttributes } from 'react'; import { SCCourseType } from '@selfcommunity/types'; export interface StudentCourseDashboardProps { courseId?: number; course?: SCCourseType; className?: HTMLAttributes<HTMLDivElement>['className']; [p: string]: any; } declare function Student(inProps: StudentCourseDashboardProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Student>; export default _default;