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.

19 lines 572 B
import React from 'react'; import { StyleSheet, View } from 'react-native'; import TypedPlaceholder from '../../../components/TypedPlaceholder'; const GroupChannelStatusEmpty = () => { return /*#__PURE__*/React.createElement(View, { style: styles.container }, /*#__PURE__*/React.createElement(TypedPlaceholder, { type: 'no-messages' })); }; const styles = StyleSheet.create({ container: { flex: 1, justifyContent: 'center', alignItems: 'center' } }); export default GroupChannelStatusEmpty; //# sourceMappingURL=GroupChannelStatusEmpty.js.map