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 IPasscodeSubtitle { text: string; theme: string; } const Subtitle = React.memo(({ text, theme }: IPasscodeSubtitle) => ( {text} )); export default Subtitle;