import React from 'react'; import { Text } from 'react-native'; import PropTypes from 'prop-types'; import styles from './styles'; import { themes } from '../../constants/colors'; const Info = React.memo(({ info, theme }) => ( {info} )); Info.propTypes = { info: PropTypes.string, theme: PropTypes.string }; export default Info;