diff --git a/src/components/backgrounds/BackgroundDefault.tsx b/src/components/backgrounds/BackgroundDefault.tsx new file mode 100644 index 0000000..93c36e5 --- /dev/null +++ b/src/components/backgrounds/BackgroundDefault.tsx @@ -0,0 +1,20 @@ +import { containers, images } from "@styles/Commons"; +import { ImageBackground, View } from "react-native"; + +type Props = { children: React.ReactNode }; + +const BackgroundDefault = ({ children }: Props) => { + return ( + + + {children} + + + ); +}; + +export default BackgroundDefault;