Add missing web component (for native view manager) (#5662)

This commit is contained in:
Hailey
2024-10-09 12:09:16 -07:00
committed by GitHub
parent cca344a3d1
commit 86b0d3b498
2 changed files with 6 additions and 1 deletions
+1 -1
View File
@@ -1,5 +1,5 @@
import {BottomSheetViewProps} from './BottomSheet.types'
export function BottomSheet(_: BottomSheetViewProps) {
throw new Error('BottomSheetView is not available on web')
throw new Error('BottomSheet is not available on web')
}
@@ -0,0 +1,5 @@
import {BottomSheetViewProps} from './BottomSheet.types'
export function BottomSheetNativeComponent(_: BottomSheetViewProps) {
throw new Error('BottomSheetNativeComponent is not available on web')
}