@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
10 lines (9 loc) • 370 B
TypeScript
/// <reference types="react" />
import { SCCourseType, SCUserType } from '@selfcommunity/types';
interface ChangeUserStatusProps {
course: SCCourseType;
user: SCUserType;
}
declare function ChangeUserStatus(props: ChangeUserStatusProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof ChangeUserStatus>;
export default _default;