From 52532fb3fff3bf5808f93f68a81bcc5e1b6e514c Mon Sep 17 00:00:00 2001 From: Hailey Date: Wed, 2 Oct 2024 17:53:42 -0700 Subject: [PATCH] add config --- modules/bottom-sheet/expo-module.config.json | 9 +++++++++ modules/bottom-sheet/index.ts | 4 ++++ 2 files changed, 13 insertions(+) create mode 100644 modules/bottom-sheet/expo-module.config.json create mode 100644 modules/bottom-sheet/index.ts diff --git a/modules/bottom-sheet/expo-module.config.json b/modules/bottom-sheet/expo-module.config.json new file mode 100644 index 0000000000..81b5b078ed --- /dev/null +++ b/modules/bottom-sheet/expo-module.config.json @@ -0,0 +1,9 @@ +{ + "platforms": ["ios", "android"], + "ios": { + "modules": ["BottomSheetModule"] + }, + "android": { + "modules": ["expo.modules.bottomsheet.BottomSheetModule"] + } +} diff --git a/modules/bottom-sheet/index.ts b/modules/bottom-sheet/index.ts new file mode 100644 index 0000000000..ea0c87b83e --- /dev/null +++ b/modules/bottom-sheet/index.ts @@ -0,0 +1,4 @@ +import {BottomSheetState, BottomSheetViewProps} from './src/BottomSheet.types' +import {BottomSheetView} from './src/BottomSheetView' + +export {type BottomSheetState, BottomSheetView, type BottomSheetViewProps}