UNPKG

@selfcommunity/react-ui

Version:

React UI Components to integrate a Community created with SelfCommunity Platform.

27 lines (26 loc) 625 B
import { SCCourseSectionType, SCCourseType } from '@selfcommunity/types'; export interface LessonReleaseMenuProps { /** * The lesson object */ section: SCCourseSectionType; /** * */ course: SCCourseType; /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * onSuccess Callback */ onSuccess?: (data: SCCourseSectionType) => void; /** * * Any other properties */ [p: string]: any; } export default function LessonReleaseMenu(inProps: LessonReleaseMenuProps): JSX.Element;