UNPKG

@gathertown/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) 345 B
import React from 'react'; type Props = { loading?: boolean; LoadingComponent?: JSX.Element; error?: boolean; ErrorComponent?: JSX.Element; children: React.ReactNode; }; declare const StatusComposition: ({ children, error, ErrorComponent, LoadingComponent, loading }: Props) => JSX.Element; export default StatusComposition;