import * as React from 'react'; import { ActionSheetProvider, useActionSheet, } from '@expo/react-native-action-sheet'; import { StyleSheet, View, Text, SafeAreaView, Button } from 'react-native'; import inspectElements from 'react-to-imperative'; type ExtractedProps = { onPress: () => void; title: string }; function App() { const { showActionSheetWithOptions } = useActionSheet(); const [items, setItems] = React.useState(['Item 1', 'Item 2', 'Item 3']); const Buttons = ( <>