@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
12 lines (11 loc) • 444 B
TypeScript
/// <reference types="react" />
import { SCCourseType } from '@selfcommunity/types';
import { InfoPositionType } from '../types';
interface InfoCourseDashboardProps {
title: string;
course: SCCourseType;
position: InfoPositionType;
}
declare function InfoCourseDashboard(props: InfoCourseDashboardProps): JSX.Element;
declare const _default: import("react").MemoExoticComponent<typeof InfoCourseDashboard>;
export default _default;