import React from 'react' import { Modal, ModalClose, Button } from '@janhq/joi' import { atom, useAtom } from 'jotai' export const showDestNotEmptyConfirmAtom = atom(false) type Props = { onUserConfirmed: () => void } const ModalChangeDestNotEmpty = ({ onUserConfirmed }: Props) => { const [show, setShow] = useAtom(showDestNotEmptyConfirmAtom) return (

You may accidentally delete your other personal data when uninstalling the app in the future. Are you sure you want to proceed with this folder? Please review your selection carefully.

setShow(false)}>
} /> ) } export default ModalChangeDestNotEmpty