import React from 'react'; import {Button, Dialog, Portal, Text} from 'react-native-paper'; export default function ConfirmDialog({ title, children, onOk, show, setShow, }: { title: string; children: JSX.Element | JSX.Element[] | string; onOk: () => void; show: boolean; setShow: (show: boolean) => void; }) { return ( setShow(false)}> {title} {children} ); }