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 ; } return null; }); EmptyRoom.propTypes = { length: PropTypes.number.isRequired }; export default EmptyRoom;