import React from 'react'; import { Text } from 'react-native'; import styles from './styles'; import { themes } from '../../lib/constants'; import { ITitleProps } from './interfaces'; const Title = React.memo(({ name, theme, hideUnreadStatus, alert }: ITitleProps) => ( {name} )); export default Title;