import { View, ScrollView, KeyboardAvoidingView, Platform, useWindowDimensions, } from "react-native"; import { StatusBar } from "expo-status-bar"; import { LinearGradient } from "expo-linear-gradient"; interface AuthLayoutProps { children: React.ReactNode; } export const AuthLayout = ({ children }: AuthLayoutProps) => { const { width } = useWindowDimensions(); const isWideScreen = width > 768; return ( {children} ); };