@sendbird/uikit-react-native
Version:
Sendbird UIKit for React Native: A feature-rich and customizable chat UI kit with messaging, channel management, and user authentication.
11 lines (10 loc) • 362 B
TypeScript
import React, { ReactNode } from 'react';
type Props = {
loading?: boolean;
LoadingComponent?: ReactNode;
error?: boolean;
ErrorComponent?: ReactNode;
children: React.ReactNode;
};
declare const StatusComposition: ({ children, error, ErrorComponent, LoadingComponent, loading }: Props) => React.JSX.Element;
export default StatusComposition;