@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
10 lines (9 loc) • 357 B
TypeScript
import { SCCourseType } from '@selfcommunity/types';
import { SyntheticEvent } from 'react';
import { SCCourseEditTabType } from '../../types';
interface StatusProps {
course: SCCourseType;
handleTabChange: (_e: SyntheticEvent, newTabValue: SCCourseEditTabType) => void;
}
export default function Status(props: StatusProps): JSX.Element;
export {};