@selfcommunity/react-ui
Version:
React UI Components to integrate a Community created with SelfCommunity Platform.
14 lines (13 loc) • 412 B
TypeScript
import { WidgetProps } from '../Widget';
export interface SuggestedEventsWidgetProps extends WidgetProps {
/**
* Feed API Query Params
* @default [{'limit': 20, 'offset': 0}]
*/
endpointQueryParams?: Record<string, string | number>;
/**
* Other props
*/
[p: string]: any;
}
export default function SuggestedEventsWidget(inProps: SuggestedEventsWidgetProps): JSX.Element;