From b838c786e02d676209c2e41c2d0113c932d8456d Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 14 Mar 2023 13:14:56 -0500 Subject: [PATCH] Delete dead code --- src/view/com/modals/WebModal.tsx | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 src/view/com/modals/WebModal.tsx diff --git a/src/view/com/modals/WebModal.tsx b/src/view/com/modals/WebModal.tsx deleted file mode 100644 index fed2fae9..00000000 --- a/src/view/com/modals/WebModal.tsx +++ /dev/null @@ -1,20 +0,0 @@ -/** - * Use this for the Web build only. - * It's intended to replace the BottomSheet. - * - * Note: the dataSet properties are used to leverage custom CSS in public/index.html - */ -import React from 'react' -// @ts-ignore no declarations available -prf -import {TouchableWithoutFeedback, View} from 'react-native-web' - -type Props = {onClose: () => void} -export const Modal: React.FC = ({onClose, children}) => { - return ( - - - {children} - - - ) -}