UNPKG

@selfcommunity/react-ui

Version:

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

15 lines (14 loc) 734 B
/// <reference types="react" /> import { DraggableProvided } from '@hello-pangea/dnd'; import { SCCourseSectionType, SCCourseType } from '@selfcommunity/types'; import { ActionLessonType, DeleteRowProps, DeleteRowRef } from '../types'; interface SectionRowProps { course: SCCourseType; provider: DraggableProvided; section: SCCourseSectionType; isNewRow: boolean; handleManageSection: (section: SCCourseSectionType, type: ActionLessonType, newRow?: boolean) => void; handleOpenDialog: (row: DeleteRowProps) => void; } declare const _default: import("react").MemoExoticComponent<import("react").ForwardRefExoticComponent<SectionRowProps & import("react").RefAttributes<DeleteRowRef>>>; export default _default;