UNPKG

@selfcommunity/react-ui

Version:

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

9 lines (8 loc) 388 B
import { HTMLAttributes } from 'react'; import { SCCourseJoinStatusType, SCCourseType } from '@selfcommunity/types'; export interface AccordionLessonsProps { course: SCCourseType | null; viewerJoinStatus?: SCCourseJoinStatusType; className?: HTMLAttributes<HTMLDivElement>['className']; } export default function AccordionLessons(inProps: AccordionLessonsProps): JSX.Element;