@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
10 lines (9 loc) • 381 B
TypeScript
/// <reference types="react" />
import { SCCourseType } from '@selfcommunity/types';
interface HeaderCourseDashboardProps {
course: SCCourseType;
hasAction?: boolean;
}
declare function HeaderCourseDashboard(props: HeaderCourseDashboardProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof HeaderCourseDashboard>;
export default _default;