From 86b0d3b49819fbd81385ebc64ec86d8807c6a189 Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 9 Oct 2024 12:09:16 -0700 Subject: Add missing web component (for native view manager) (#5662) --- modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx (limited to 'modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx') diff --git a/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx new file mode 100644 index 000000000..f1a77cf33 --- /dev/null +++ b/modules/bottom-sheet/src/BottomSheetNativeComponent.web.tsx @@ -0,0 +1,5 @@ +import {BottomSheetViewProps} from './BottomSheet.types' + +export function BottomSheetNativeComponent(_: BottomSheetViewProps) { + throw new Error('BottomSheetNativeComponent is not available on web') +} -- cgit 1.4.1