From 93620f6cb2b29e58ac783c02bfb6c685277b79f9 Mon Sep 17 00:00:00 2001 From: RadoslavDimchev Date: Tue, 15 Aug 2023 11:01:01 +0300 Subject: [PATCH] fix: delete BackgroundImage old component --- src/components/BackgroundImage.tsx | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/components/BackgroundImage.tsx diff --git a/src/components/BackgroundImage.tsx b/src/components/BackgroundImage.tsx deleted file mode 100644 index 43400a62..00000000 --- a/src/components/BackgroundImage.tsx +++ /dev/null @@ -1,20 +0,0 @@ -import { Stack } from 'tamagui' - -type BackgroundImageProps = { - background: string -} - -const BackgroundImage = ({ background }: BackgroundImageProps) => { - return ( - - ) -} - -export default BackgroundImage