UNPKG

@selfcommunity/react-ui

Version:

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

18 lines (17 loc) 512 B
import { SCContentType } from '@selfcommunity/types'; export interface PaymentOrdersProps { /** * Overrides or extends the styles applied to the component. * @default null */ className?: string; /** * The content name used to prefilter the results shown */ contentName?: string; /** * The content type used to prefilter the results shown */ contentType?: SCContentType; } export default function PaymentOrders(inProps: PaymentOrdersProps): JSX.Element;