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