import styles from '@/styles/screens/auth/recover.styles'; import { ReactNode } from 'react'; import { Image, ImageBackground, KeyboardAvoidingView, Platform, ScrollView, StatusBar, Text, View, } from 'react-native'; type Props = { title: string; subtitle: string; children: ReactNode; }; export function RecoverScreenLayout({ title, subtitle, children }: Props) { return ( {title} {subtitle} {children} ); }