UNPKG

@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.

14 lines 516 B
import React from 'react'; const StatusComposition = ({ children, error, ErrorComponent, LoadingComponent, loading }) => { if (loading && LoadingComponent) return /*#__PURE__*/React.createElement(React.Fragment, null, LoadingComponent); if (error && ErrorComponent) return /*#__PURE__*/React.createElement(React.Fragment, null, ErrorComponent); return /*#__PURE__*/React.createElement(React.Fragment, null, children); }; export default StatusComposition; //# sourceMappingURL=StatusComposition.js.map