@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 • 607 B
JavaScript
import React from 'react';
import { StyleSheet, View } from 'react-native';
import TypedPlaceholder from '../../../components/TypedPlaceholder';
const GroupChannelBannedUsersStatusLoading = () => {
return /*#__PURE__*/React.createElement(View, {
style: styles.container
}, /*#__PURE__*/React.createElement(TypedPlaceholder, {
type: 'loading'
}));
};
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'center',
alignItems: 'center'
}
});
export default GroupChannelBannedUsersStatusLoading;
//# sourceMappingURL=GroupChannelBannedUsersStatusLoading.js.map