@try-at-software/input-elements
Version:
A package providing different input elements that are extensible and easily configurable for your custom needs.
12 lines (11 loc) • 358 B
TypeScript
import * as React from 'react';
interface IPresentationRendererProps {
isVisible: boolean;
isLoading: boolean;
loadingIndicator?: React.ComponentType;
renderInternalContent: () => JSX.Element;
}
export declare class PresentationRenderer extends React.Component<IPresentationRendererProps> {
render(): JSX.Element;
}
export {};