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