UNPKG

@selfcommunity/react-ui

Version:

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

13 lines (12 loc) 557 B
import { SyntheticEvent } from 'react'; import { SCCourseType } from '@selfcommunity/types'; import { BaseGetParams } from '@selfcommunity/api-services'; import { SCCourseEditTabType } from '../../types/course'; interface RequestsProps { course: SCCourseType; endpointQueryParams?: BaseGetParams; handleTabChange: (_e: SyntheticEvent, newTabValue: SCCourseEditTabType) => void; } declare function Requests(props: RequestsProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Requests>; export default _default;