@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
12 lines (11 loc) • 502 B
TypeScript
import { SyntheticEvent } from 'react';
import { SCCourseType } from '@selfcommunity/types';
import { SCCourseEditTabType } from '../../types/course';
interface UsersProps {
course: SCCourseType;
endpointQueryParams?: Record<string, string | number>;
handleTabChange: (_e: SyntheticEvent, newTabValue: SCCourseEditTabType) => void;
}
declare function Users(props: UsersProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof Users>;
export default _default;