import React, { useRef } from "react"; import { View } from "react-native"; import { SafeAreaProvider } from "react-native-safe-area-context"; import { action } from "storybook/actions"; import { BottomSheetModalProvider } from "@gorhom/bottom-sheet"; import { BottomSheet, BottomSheetOption, Button, Heading, Text, } from "@jobber/components-native"; import type { BottomSheetRef } from "@jobber/components-native"; export function BottomSheetBasicExample() { const bottomSheetRef = useRef(null); return ( Basic BottomSheet Note that due to the differences between React Native Web and React Native, this does not render 100% properly