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