import React from 'react';
import { View, Text } from 'react-native';
import BottomSheet from '@react-native-ohos/bottom-sheet';
export default function BottomSheetDemo() {
return (
<View style={{ flex: 1, justifyContent: 'center', alignItems: 'center' }}>
<BottomSheet snapPoints={["25%", "50%"]} />
</View>
);
}