import React from 'react'; import { Text, View } from 'react-native'; import { Row } from 'react-native-easy-grid'; import styles from './styles'; import { themes } from '../../../constants/colors'; interface IPasscodeTitle { text: string; theme: string; } const Title = React.memo(({ text, theme }: IPasscodeTitle) => ( {text} )); export default Title;