From 8f994587c7ce837a4f855094b2bfee2ce2fa91c5 Mon Sep 17 00:00:00 2001 From: G Date: Thu, 25 Apr 2024 12:17:57 +0000 Subject: [PATCH] default background component that render the default beasy background iamge --- src/components/backgrounds/BackgroundDefault.tsx | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 src/components/backgrounds/BackgroundDefault.tsx 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; -- libgit2 0.27.1