24 lines
500 B
JavaScript
24 lines
500 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 }) => {
|
|
if (length === 0) {
|
|
return <ImageBackground source={{ uri: 'message_empty' }} style={styles.image} />;
|
|
}
|
|
return null;
|
|
});
|
|
|
|
EmptyRoom.propTypes = {
|
|
length: PropTypes.number.isRequired
|
|
};
|
|
export default EmptyRoom;
|