@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
11 lines (10 loc) • 432 B
TypeScript
/// <reference types="react" />
import { SCCourseType } from '@selfcommunity/types';
import { CourseDashboardUsersParams } from '@selfcommunity/api-services';
interface StudentsProps {
course: SCCourseType;
endpointQueryParams?: CourseDashboardUsersParams;
}
declare function Students(props: StudentsProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof Students>;
export default _default;