import React from 'react'; import { AlertDialog, Button, Center } from 'native-base'; import type { TouchableOpacity } from 'react-native'; export const Example = () => { const [isOpen, setIsOpen] = React.useState(false); const onClose = () => setIsOpen(false); const cancelRef = React.useRef(null); return (
Discard Changes? Are you sure you want to discard all of your notes? 44 words will be deleted.
); };