UNPKG

@selfcommunity/react-ui

Version:

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

10 lines (9 loc) 363 B
/// <reference types="react" /> import { SCCourseType } from '@selfcommunity/types'; interface CommentsProps { course: SCCourseType; endpointQueryParams?: Record<string, string | number>; } declare function Comments(props: CommentsProps): JSX.Element; declare const _default: import("react").MemoExoticComponent<typeof Comments>; export default _default;