UNPKG

@selfcommunity/react-ui

Version:

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

10 lines (9 loc) 390 B
/// <reference types="react" /> import { SCCourseType } from '@selfcommunity/types'; export interface CourseCompletedDialogProps { course: SCCourseType; onClose: () => void; } declare function CourseCompletedDialog(inProps: CourseCompletedDialogProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof CourseCompletedDialog>; export default _default;