@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
9 lines (8 loc) • 336 B
TypeScript
/// <reference types="react" />
interface CoursePublicationDialogProps {
onSubmit: () => void;
onClose: () => void;
}
declare function CoursePublicationDialog(props: CoursePublicationDialogProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof CoursePublicationDialog>;
export default _default;