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'; import { useTheme } from '../../../theme'; interface IPasscodeTitle { text: string; } const Title = React.memo(({ text }: IPasscodeTitle) => { const { theme } = useTheme(); return ( {text} ); }); export default Title;