25 lines
546 B
JavaScript
25 lines
546 B
JavaScript
import React from 'react';
|
|
import { ImageBackground, StyleSheet } from 'react-native';
|
|
import PropTypes from 'prop-types';
|
|
|
|
const styles = StyleSheet.create({
|
|
image: {
|
|
width: '100%',
|
|
height: '100%',
|
|
position: 'absolute'
|
|
}
|
|
});
|
|
|
|
const EmptyRoom = React.memo(({ length, mounted }) => {
|
|
if (length === 0 && mounted) {
|
|
return <ImageBackground source={{ uri: 'message_empty' }} style={styles.image} />;
|
|
}
|
|
return null;
|
|
});
|
|
|
|
EmptyRoom.propTypes = {
|
|
length: PropTypes.number.isRequired,
|
|
mounted: PropTypes.bool
|
|
};
|
|
export default EmptyRoom;
|