import BeasyDefaultBackground from "@components/backgrounds/BeasyDefaultBackground"; import type React from "react"; import { SafeAreaView } from "react-native-safe-area-context"; type Props = { children: React.ReactNode }; const WrapperWithDefaultBeasyBackgroundAndSafeAreaFull = ({ children }: Props) => { return ( {children} ); }; export default WrapperWithDefaultBeasyBackgroundAndSafeAreaFull;