import { images } from "@styles/Commons"; import { ImageBackground } from "react-native"; type Props = { children: React.ReactNode }; const BackgroundDefault = ({ children }: Props) => { return ( {children} ); }; export default BackgroundDefault;